mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-05-01 04:30:37 +02:00
Fix -n option argument error
By removing the whitespace between the "-n" option and the argument value "1", this commit fixes the issue of the "gunwip" alias. fix #5079
This commit is contained in:
parent
0ebe35968c
commit
4c64448972
1 changed files with 1 additions and 1 deletions
|
|
@ -208,7 +208,7 @@ alias gts='git tag -s'
|
|||
alias gtv='git tag | sort -V'
|
||||
|
||||
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 -n1 | grep -q -c "\-\-wip\-\-" && git reset HEAD~1'
|
||||
alias gup='git pull --rebase'
|
||||
alias gupv='git pull --rebase -v'
|
||||
alias glum='git pull upstream master'
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue