Removed gdt git difftool alias because gdt is already used for git diff-tree

This commit is contained in:
Corvin Mcpherson 2015-04-14 17:28:51 -04:00
commit 5531df7aa5

View file

@ -23,7 +23,10 @@ compdef _git gp=git-push
alias gd='git diff'
gdv() { git diff -w "$@" | view - }
compdef _git gdv=git-diff
alias gdt='git difftool'
#We are using the same alias for git diff-tree
#alias gdt='git difftool'
alias gc='git commit -v'
compdef _git gc=git-commit
alias gc!='git commit -v --amend'