Remove duplicate alias in git plugin.

This commit is contained in:
Tejas Bubane 2015-02-04 12:13:28 +05:30
commit 58ff50bba0

View file

@ -15,7 +15,6 @@ alias gup='git pull --rebase'
compdef _git gup=git-fetch
alias gp='git push'
compdef _git gp=git-push
alias gd='git diff'
gdv() { git diff -w "$@" | view - }
compdef _git gdv=git-diff
alias gdt='git difftool'
@ -174,6 +173,3 @@ alias gignore='git update-index --assume-unchanged'
alias gunignore='git update-index --no-assume-unchanged'
# list temporarily ignored files
alias gignored='git ls-files -v | grep "^[[:lower:]]"'