Adds --show-signature to git log aliases

For GPG users, it's nice to have the `--show-signature` flag added to the git log aliases
This commit is contained in:
Filidor Wiese 2017-02-11 14:32:17 +01:00 committed by GitHub
parent d2725d44fc
commit a3744d9849

View File

@ -168,11 +168,11 @@ alias gke='\gitk --all $(git log -g --pretty=%h)'
compdef _git gke='gitk' compdef _git gke='gitk'
alias gl='git pull' alias gl='git pull'
alias glg='git log --stat' alias glg='git log --show-signature --stat'
alias glgp='git log --stat -p' alias glgp='git log --show-signature --stat -p'
alias glgg='git log --graph' alias glgg='git log --show-signature --graph'
alias glgga='git log --graph --decorate --all' alias glgga='git log --show-signature --graph --decorate --all'
alias glgm='git log --graph --max-count=10' alias glgm='git log --show-signature --graph --max-count=10'
alias glo='git log --oneline --decorate' 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 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 glola="git log --graph --pretty='%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --all"