mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-11 00:10:08 +00:00
fix(git): escape first hyphen in gunwip
This commit is contained in:
parent
ac0924930d
commit
0145d744a9
1 changed files with 1 additions and 1 deletions
|
@ -302,7 +302,7 @@ alias gtv='git tag | sort -V'
|
|||
alias gtl='gtl(){ git tag --sort=-v:refname -n -l "${1}*" }; noglob gtl'
|
||||
|
||||
alias gunignore='git update-index --no-assume-unchanged'
|
||||
alias gunwip='git log -n 1 | grep -q -c "--wip--" && git reset HEAD~1'
|
||||
alias gunwip='git log -n 1 | grep -q -c "\--wip--" && git reset HEAD~1'
|
||||
alias gup='git pull --rebase'
|
||||
alias gupv='git pull --rebase -v'
|
||||
alias gupa='git pull --rebase --autostash'
|
||||
|
|
Loading…
Reference in a new issue