diff options
author | George Kaklamanos <gkaklas@users.noreply.github.com> | 2018-04-25 15:14:33 +0300 |
---|---|---|
committer | Marc Cornellà <marc.cornella@live.com> | 2018-04-25 14:14:33 +0200 |
commit | acacfec924fe68a184a9111eba0e99aa89b9015b (patch) | |
tree | cf21d5a156fafdc43bf0a9bda89f8f521690f68d /plugins | |
parent | b85c72b5f6ed1d33414cc2d9e7afceef12b861e7 (diff) | |
download | zsh-acacfec924fe68a184a9111eba0e99aa89b9015b.tar.gz zsh-acacfec924fe68a184a9111eba0e99aa89b9015b.tar.bz2 zsh-acacfec924fe68a184a9111eba0e99aa89b9015b.zip |
Remove unneeded option in glol and glola (#6059)
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/git/git.plugin.zsh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/git/git.plugin.zsh b/plugins/git/git.plugin.zsh index fa0c06500..fd55be138 100644 --- a/plugins/git/git.plugin.zsh +++ b/plugins/git/git.plugin.zsh @@ -180,8 +180,8 @@ alias glgg='git log --graph' alias glgga='git log --graph --decorate --all' alias glgm='git log --graph --max-count=10' alias glo='git log --oneline --decorate' -alias glol="git log --graph --pretty='%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit" -alias glola="git log --graph --pretty='%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --all" +alias glol="git log --graph --pretty='%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset'" +alias glola="git log --graph --pretty='%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --all" alias glog='git log --oneline --decorate --graph' alias gloga='git log --oneline --decorate --graph --all' alias glp="_git_log_prettily" |