This commit is contained in:
Mohit Sethi 2015-05-01 15:38:39 +00:00
commit 1edf20c2b5

View file

@ -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