mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-11 00:10:08 +00:00
perf(git): improve gunwip
alias (#11714)
This commit is contained in:
parent
5901f30b44
commit
fb4213c34f
2 changed files with 2 additions and 2 deletions
|
@ -186,7 +186,7 @@ plugins=(... git)
|
||||||
| gtv | git tag \| sort -V |
|
| gtv | git tag \| sort -V |
|
||||||
| gtl | gtl(){ git tag --sort=-v:refname -n --list ${1}\* }; noglob gtl |
|
| gtl | gtl(){ git tag --sort=-v:refname -n --list ${1}\* }; noglob gtl |
|
||||||
| gunignore | git update-index --no-assume-unchanged |
|
| gunignore | git update-index --no-assume-unchanged |
|
||||||
| gunwip | git log --max-count=1 \| grep -q -c "\-\-wip\-\-" && git reset HEAD~1 |
|
| gunwip | git rev-list --max-count=1 --format="%s" HEAD \| grep -q "\-\-wip\-\-" && git reset HEAD~1 |
|
||||||
| gup | git pull --rebase |
|
| gup | git pull --rebase |
|
||||||
| gupv | git pull --rebase --verbose |
|
| gupv | git pull --rebase --verbose |
|
||||||
| gupa | git pull --rebase --autostash |
|
| gupa | git pull --rebase --autostash |
|
||||||
|
|
|
@ -312,7 +312,7 @@ alias gtv='git tag | sort -V'
|
||||||
alias gtl='gtl(){ git tag --sort=-v:refname -n --list "${1}*" }; noglob gtl'
|
alias gtl='gtl(){ git tag --sort=-v:refname -n --list "${1}*" }; noglob gtl'
|
||||||
|
|
||||||
alias gunignore='git update-index --no-assume-unchanged'
|
alias gunignore='git update-index --no-assume-unchanged'
|
||||||
alias gunwip='git log --max-count=1 | grep -q -c "\--wip--" && git reset HEAD~1'
|
alias gunwip='git rev-list --max-count=1 --format="%s" HEAD | grep -q "\--wip--" && git reset HEAD~1'
|
||||||
alias gup='git pull --rebase'
|
alias gup='git pull --rebase'
|
||||||
alias gupv='git pull --rebase --verbose'
|
alias gupv='git pull --rebase --verbose'
|
||||||
alias gupa='git pull --rebase --autostash'
|
alias gupa='git pull --rebase --autostash'
|
||||||
|
|
Loading…
Reference in a new issue