diff options
author | Sean M. Collins <sean@coreitpro.com> | 2012-08-07 14:38:48 -0400 |
---|---|---|
committer | Sean M. Collins <sean@coreitpro.com> | 2012-08-07 14:38:48 -0400 |
commit | 74faabbcabf6dc9a60737bfd54ba1b3a341c547d (patch) | |
tree | ebbdae2f66935fb1cb9861135154da66b46dc655 | |
parent | d165a84dc0e8d2eb0774ed26995e7046c0aff41f (diff) | |
download | zsh-74faabbcabf6dc9a60737bfd54ba1b3a341c547d.tar.gz zsh-74faabbcabf6dc9a60737bfd54ba1b3a341c547d.tar.bz2 zsh-74faabbcabf6dc9a60737bfd54ba1b3a341c547d.zip |
Add shortcut for showing log of all branches
-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 d3d3f702a..23c598169 100644 --- a/plugins/git/git.plugin.zsh +++ b/plugins/git/git.plugin.zsh @@ -30,6 +30,8 @@ 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 +alias glgga='git log --graph --decorate --all' +compdef _git glgga=git-log alias gss='git status -s' compdef _git gss=git-status alias ga='git add' |