mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-03-20 03:13:33 +01:00
[Git-Aliases]Added verbose variants to push & pull
This commit is contained in:
parent
77140a2ea7
commit
d20cf07ebc
1 changed files with 4 additions and 0 deletions
|
|
@ -13,8 +13,12 @@ alias gl='git pull'
|
||||||
compdef _git gl=git-pull
|
compdef _git gl=git-pull
|
||||||
alias gup='git pull --rebase'
|
alias gup='git pull --rebase'
|
||||||
compdef _git gup=git-fetch
|
compdef _git gup=git-fetch
|
||||||
|
alias gupv='git pull -v --rebase'
|
||||||
|
compdef _git gupv=git-fetch
|
||||||
alias gp='git push'
|
alias gp='git push'
|
||||||
compdef _git gp=git-push
|
compdef _git gp=git-push
|
||||||
|
alias gpv='git push -v'
|
||||||
|
compdef _git gpv=git-push
|
||||||
alias gd='git diff'
|
alias gd='git diff'
|
||||||
gdv() { git diff -w "$@" | view - }
|
gdv() { git diff -w "$@" | view - }
|
||||||
compdef _git gdv=git-diff
|
compdef _git gdv=git-diff
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue