We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 11d4939 commit fbb352bCopy full SHA for fbb352b
Taskfile.yml
@@ -182,19 +182,29 @@ tasks:
182
###########################################################################
183
184
quick:
185
+ aliases: [ "q" ]
186
cmds:
187
- task: commit
188
189
- git status
190
+ - task: push
191
ignore_error: true
192
193
commit:
194
+ aliases: [ "c" ]
195
196
- git add .
197
- git commit -m "update"
198
199
200
+
201
+ pull:
202
+ aliases: [ "pl" ]
203
+ cmds:
204
+ - git pull
205
206
push:
207
+ aliases: [ "p" ]
208
209
- git push origin main --tags
210
- repo_url=`git remote -v | grep push | awk -F ":" '{print $2}' | awk -F ".git" '{print "https://github.com/"$1}'`; open $repo_url
0 commit comments