feat: add git difftool alias as mentioned in git cheatsheet alias list => https://github.com/robbyrussell/oh-my-zsh/wiki/Cheatsheet#git

This commit is contained in:
Patrick Ording 2016-02-12 21:58:08 +01:00
commit ff47712e82

View file

@ -79,6 +79,7 @@ alias gd='git diff'
alias gdca='git diff --cached'
alias gdct='git describe --tags `git rev-list --tags --max-count=1`'
alias gdt='git diff-tree --no-commit-id --name-only -r'
alias gdtl='git difftool'
gdv() { git diff -w "$@" | view - }
compdef _git gdv=git-diff
alias gdw='git diff --word-diff'