diff options
author | Robby Russell <robby@planetargon.com> | 2016-05-18 19:15:30 -0700 |
---|---|---|
committer | Robby Russell <robby@planetargon.com> | 2016-05-18 19:15:30 -0700 |
commit | 11b48e1e9fc2e2fd9aaa5bd6b645523f6f03bc6b (patch) | |
tree | 25411e32c456eefaf2fba9dccc46bcd6d0bf8a83 | |
parent | 621eb21139512cb0e00fbc5a9b9d215308eba720 (diff) | |
parent | d2712d3180e7667ac028f8a40433b9967004cb90 (diff) | |
download | zsh-11b48e1e9fc2e2fd9aaa5bd6b645523f6f03bc6b.tar.gz zsh-11b48e1e9fc2e2fd9aaa5bd6b645523f6f03bc6b.tar.bz2 zsh-11b48e1e9fc2e2fd9aaa5bd6b645523f6f03bc6b.zip |
Merge pull request #5100 from emzar/yet-another-git-tree
Git alias
-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 220bf259b..34f69029a 100644 --- a/plugins/git/git.plugin.zsh +++ b/plugins/git/git.plugin.zsh @@ -157,6 +157,7 @@ alias glo='git log --oneline --decorate' alias glol="git log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit" alias glola="git log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --all" alias glog='git log --oneline --decorate --graph' +alias gloga='git log --oneline --decorate --graph --all' alias glp="_git_log_prettily" compdef _git glp=git-log |