]> git.rmz.io Git - dotfiles.git/commitdiff
zsh: add --cherry-mark and --boundary flags to `glgl`
authorSamir Benmendil <samir.benmendil@ultrahaptics.com>
Thu, 2 Nov 2017 15:24:07 +0000 (15:24 +0000)
committerSamir Benmendil <samir.benmendil@ultrahaptics.com>
Thu, 2 Nov 2017 15:24:07 +0000 (15:24 +0000)
zsh/aliases/git.zsh

index d45e56aa0d11b914a435819a3b83fbeeb95404be..9046d080a620bc9e0b3b10bdeec3ab8f0df8d008 100644 (file)
@@ -50,7 +50,7 @@ alias gcount='git shortlog -sn'
 alias glg='git --no-pager log --graph --max-count=20 --pretty=tformat:"%Cblue%cd %C(auto)%h%d %s" --date=short'
 function glm { glg "${1:-origin}".. }
 compdef _git glm=git-log
-alias glgl='git log --graph --pretty=tformat:"%Cblue%cd %C(auto)%h%d %s" --date=short'
+alias glgl='git log --graph --cherry-mark --boundary --pretty=tformat:"%Cblue%cd %C(auto)%h%d %s" --date=short'
 alias glgg='git log --stat --graph --max-count=20 --decorate'
 alias glgga='git log --stat --graph --decorate --all'