Skip to content

Commit

Permalink
feat: implement emoji wip (#120)
Browse files Browse the repository at this point in the history
  • Loading branch information
luismayta committed Feb 4, 2024
1 parent 31a1d5a commit 5bd4bc3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/alias.zsh
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ alias gcotb='git checkout --track -b'
alias glog='git log'
alias glogp='git log --pretty=format:"%h %s" --graph'

alias gwip='git add -A; git rm $(git ls-files --deleted) 2> /dev/null; git commit --no-verify --no-gpg-sign --message "--wip-- [skip ci]"; git push origin $(git rev-parse --abbrev-ref HEAD)'
alias gwip='git add -A; git rm $(git ls-files --deleted) 2> /dev/null; git commit --no-verify --no-gpg-sign --message "🚧 --wip-- [skip ci]"; git push origin $(git rev-parse --abbrev-ref HEAD)'

alias gunwip='git rev-list --max-count=1 --format="%s" HEAD | grep -q "\--wip--" && git reset HEAD~1'

Expand Down

0 comments on commit 5bd4bc3

Please sign in to comment.