diff options
author | Robby Russell <robby@planetargon.com> | 2014-09-01 13:02:55 +0200 |
---|---|---|
committer | Robby Russell <robby@planetargon.com> | 2014-09-01 13:02:55 +0200 |
commit | da94f45f9ce8b31f1f4a551f37c5be852e8fd570 (patch) | |
tree | 1b8a0edfa086388e5f81c6694b5c13e6ae6dfe33 /plugins | |
parent | d21e3ee422e8c9c1c1a3342649a9fce1a82a4f9b (diff) | |
parent | f0d5cfdc33561a16e26e9db2b2dbb9141eabe5c1 (diff) | |
download | zsh-da94f45f9ce8b31f1f4a551f37c5be852e8fd570.tar.gz zsh-da94f45f9ce8b31f1f4a551f37c5be852e8fd570.tar.bz2 zsh-da94f45f9ce8b31f1f4a551f37c5be852e8fd570.zip |
Merge pull request #3073 from ajhenriques/master
add git difftool alias (gdt)
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/git/git.plugin.zsh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/git/git.plugin.zsh b/plugins/git/git.plugin.zsh index 4b5ddf44c..bb1978f78 100644 --- a/plugins/git/git.plugin.zsh +++ b/plugins/git/git.plugin.zsh @@ -18,6 +18,7 @@ compdef _git gp=git-push alias gd='git diff' gdv() { git diff -w "$@" | view - } compdef _git gdv=git-diff +alias gdt='git difftool' alias gc='git commit -v' compdef _git gc=git-commit alias gc!='git commit -v --amend' |