Added support for git --no-pager diff

This commit is contained in:
Swanand Pagnis 2013-10-03 12:24:17 +05:30
commit 9a817bb35c

View file

@ -7,6 +7,8 @@ alias gd='git diff'
compdef _git gd=git-diff compdef _git gd=git-diff
alias gdc='git diff --cached' alias gdc='git diff --cached'
compdef _git gdc=git-diff compdef _git gdc=git-diff
alias gdn='git --no-pager diff'
compdef _git gdn=git-diff
alias gl='git pull' alias gl='git pull'
compdef _git gl=git-pull compdef _git gl=git-pull
alias gup='git pull --rebase' alias gup='git pull --rebase'