diff options
author | Ivan Mironov <ivan-mironov@binomo.com> | 2016-05-18 12:27:23 +0300 |
---|---|---|
committer | Ivan Mironov <ivan-mironov@binomo.com> | 2016-05-18 12:28:36 +0300 |
commit | d2712d3180e7667ac028f8a40433b9967004cb90 (patch) | |
tree | 25411e32c456eefaf2fba9dccc46bcd6d0bf8a83 | |
parent | 621eb21139512cb0e00fbc5a9b9d215308eba720 (diff) | |
download | zsh-d2712d3180e7667ac028f8a40433b9967004cb90.tar.gz zsh-d2712d3180e7667ac028f8a40433b9967004cb90.tar.bz2 zsh-d2712d3180e7667ac028f8a40433b9967004cb90.zip |
Add alias for oneline git tree with --all option
-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 |