diff options
author | Robby Russell <robby@planetargon.com> | 2011-04-12 10:16:32 +0200 |
---|---|---|
committer | Robby Russell <robby@planetargon.com> | 2011-04-12 10:16:32 +0200 |
commit | d11fb9d47c85b623831919f1910dd862e600c63d (patch) | |
tree | 6812847497f0b11b471b1a23ea599f1a919bd791 | |
parent | 91e4f3d667cc04148fafc4675174424daf5f6b5a (diff) | |
parent | 4cd4167c8d988656eed4896d6d1343e311ce078c (diff) | |
download | zsh-d11fb9d47c85b623831919f1910dd862e600c63d.tar.gz zsh-d11fb9d47c85b623831919f1910dd862e600c63d.tar.bz2 zsh-d11fb9d47c85b623831919f1910dd862e600c63d.zip |
Removing call to mate.
-rw-r--r-- | plugins/git/git.plugin.zsh | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/plugins/git/git.plugin.zsh b/plugins/git/git.plugin.zsh index b21c6a8e0..85eabced0 100644 --- a/plugins/git/git.plugin.zsh +++ b/plugins/git/git.plugin.zsh @@ -6,24 +6,21 @@ compdef _git gst=git-status alias gl='git pull' compdef _git gl=git-pull alias gup='git fetch && git rebase' -compdef gup=git +compdef _git gup=git-fetch alias gp='git push' compdef _git gp=git-push -alias gd='git diff | mate' -# WTF is mate?? -compdef _git gd=git-diff gdv() { git diff -w "$@" | view - } -compdef gdv=git +compdef _git gdv=git-diff alias gc='git commit -v' -compdef gc=git +compdef _git gc=git-commit alias gca='git commit -v -a' -compdef gca=git +compdef _git gca=git-commit alias gco='git checkout' compdef _git gco=git-checkout alias gb='git branch' compdef _git gb=git-branch alias gba='git branch -a' -compdef gba=git +compdef _git gba=git-branch alias gcount='git shortlog -sn' compdef gcount=git alias gcp='git cherry-pick' |