From: Samir Benmendil Date: Thu, 27 Aug 2015 01:37:52 +0000 (+0100) Subject: zsh: glgl alias 'Git LoG Less', same as glg with pager X-Git-Url: https://git.rmz.io/dotfiles.git/commitdiff_plain/3ca172b5e1d44a813e74c05fa056318e26ff5a67 zsh: glgl alias 'Git LoG Less', same as glg with pager --- diff --git a/zsh/aliases/git.zsh b/zsh/aliases/git.zsh index 82addc2..f2673a3 100644 --- a/zsh/aliases/git.zsh +++ b/zsh/aliases/git.zsh @@ -42,6 +42,8 @@ compdef _git gcp=git-cherry-pick alias glg='git --no-pager log --oneline --graph --max-count=20 --decorate' alias glg='git --no-pager log --graph --max-count=20 --pretty=tformat:"%Cblue%cd %C(auto)%h%d %s" --date=short' compdef _git glg=git-log +alias glgl='git log --graph --pretty=tformat:"%Cblue%cd %C(auto)%h%d %s" --date=short' +compdef _git glgl=git-log alias glgg='git log --stat --graph --max-count=20 --decorate' compdef _git glgg=git-log alias glgga='git log --stat --graph --decorate --all'