diff options
author | Sven Lito <me@svenlito.com> | 2010-10-11 02:43:51 +0100 |
---|---|---|
committer | Robby Russell <robby@planetargon.com> | 2011-07-23 09:12:44 -0700 |
commit | 6bb0c1c9269025867e886b76bcbf737e5a54400d (patch) | |
tree | 637410705e395f9518d5e5b4c2353dac26e5618b | |
parent | eb63ddf6bb119e3d0e62f012b2f9b5fe95e0d647 (diff) | |
download | zsh-6bb0c1c9269025867e886b76bcbf737e5a54400d.tar.gz zsh-6bb0c1c9269025867e886b76bcbf737e5a54400d.tar.bz2 zsh-6bb0c1c9269025867e886b76bcbf737e5a54400d.zip |
added git log with graph
-rw-r--r-- | plugins/git/git.plugin.zsh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/plugins/git/git.plugin.zsh b/plugins/git/git.plugin.zsh index bc340e86b..0c94cc99e 100644 --- a/plugins/git/git.plugin.zsh +++ b/plugins/git/git.plugin.zsh @@ -27,6 +27,8 @@ alias gcp='git cherry-pick' compdef _git gcp=git-cherry-pick alias glg='git log --stat --max-count=5' compdef _git glg=git-log +alias glgg='git log --graph --max-count=5' +compdef _git glgg=git-log # Git and svn mix alias git-svn-dcommit-push='git svn dcommit && git push github master:svntrunk' |