Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
hhstore committed Mar 27, 2024
1 parent 11d4939 commit fbb352b
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions Taskfile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -182,19 +182,29 @@ tasks:
###########################################################################

quick:
aliases: [ "q" ]
cmds:
- task: commit
- task: commit
- git status
- task: push
ignore_error: true

commit:
aliases: [ "c" ]
cmds:
- git add .
- git commit -m "update"
ignore_error: true


pull:
aliases: [ "pl" ]
cmds:
- git pull

push:
aliases: [ "p" ]
cmds:
- git push origin main --tags
- repo_url=`git remote -v | grep push | awk -F ":" '{print $2}' | awk -F ".git" '{print "https://github.com/"$1}'`; open $repo_url

0 comments on commit fbb352b

Please sign in to comment.