[Git-Aliases]Added verbose variants to push & pull

This commit is contained in:
mohitsethi 2014-09-03 07:38:06 +00:00 committed by mohitsethi
commit d20cf07ebc

View file

@ -13,8 +13,12 @@ alias gl='git pull'
compdef _git gl=git-pull
alias gup='git pull --rebase'
compdef _git gup=git-fetch
alias gupv='git pull -v --rebase'
compdef _git gupv=git-fetch
alias gp='git push'
compdef _git gp=git-push
alias gpv='git push -v'
compdef _git gpv=git-push
alias gd='git diff'
gdv() { git diff -w "$@" | view - }
compdef _git gdv=git-diff