diff options
author | Robby Russell <robby@planetargon.com> | 2012-12-02 12:39:55 -0800 |
---|---|---|
committer | Robby Russell <robby@planetargon.com> | 2012-12-02 12:39:55 -0800 |
commit | ac90eed387770e92e02f12c394b9f81b0b63b099 (patch) | |
tree | b850445c26a00990ff83ad730073ca566ebb30a3 | |
parent | 215d6da3dedd44d8ec23ccb34b54f14d9f96428f (diff) | |
parent | 74faabbcabf6dc9a60737bfd54ba1b3a341c547d (diff) | |
download | zsh-ac90eed387770e92e02f12c394b9f81b0b63b099.tar.gz zsh-ac90eed387770e92e02f12c394b9f81b0b63b099.tar.bz2 zsh-ac90eed387770e92e02f12c394b9f81b0b63b099.zip |
Merge pull request #1274 from sc68cal/feature/git_decorate_log
[Git Plugin] 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 0a19e0c1c..885bbe3be 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' |