Skip to content

Commit fbb352b

Browse files
committed
update
1 parent 11d4939 commit fbb352b

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

Taskfile.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -182,19 +182,29 @@ tasks:
182182
###########################################################################
183183

184184
quick:
185+
aliases: [ "q" ]
185186
cmds:
186187
- task: commit
187188
- task: commit
188189
- git status
190+
- task: push
189191
ignore_error: true
190192

191193
commit:
194+
aliases: [ "c" ]
192195
cmds:
193196
- git add .
194197
- git commit -m "update"
195198
ignore_error: true
196199

200+
201+
pull:
202+
aliases: [ "pl" ]
203+
cmds:
204+
- git pull
205+
197206
push:
207+
aliases: [ "p" ]
198208
cmds:
199209
- git push origin main --tags
200210
- 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

Comments
 (0)