summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJefferson F. Pires <jeffersfp@gmail.com>2018-09-12 11:57:48 -0300
committerMarc Cornellà <marc.cornella@live.com>2018-09-12 16:57:48 +0200
commitd5f0a0a413146761bfee5f2a206c68cdb577159f (patch)
tree75188685bc57a7fd0068b1c4ff4eab2f96c49c5a
parent69ba6e435970546cd6612941ba0569bbe6847bdb (diff)
downloadzsh-d5f0a0a413146761bfee5f2a206c68cdb577159f.tar.gz
zsh-d5f0a0a413146761bfee5f2a206c68cdb577159f.tar.bz2
zsh-d5f0a0a413146761bfee5f2a206c68cdb577159f.zip
git: add glols alias for glol --stat (#5871)
-rw-r--r--plugins/git/git.plugin.zsh1
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/git/git.plugin.zsh b/plugins/git/git.plugin.zsh
index 2efb4b881..3a549be3e 100644
--- a/plugins/git/git.plugin.zsh
+++ b/plugins/git/git.plugin.zsh
@@ -183,6 +183,7 @@ 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'"
+alias glols="git log --graph --pretty='%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --stat"
alias glod="git log --graph --pretty='%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%ad) %C(bold blue)<%an>%Creset'"
alias glods="git log --graph --pretty='%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%ad) %C(bold blue)<%an>%Creset' --date=short"
alias glola="git log --graph --pretty='%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --all"