From 20a78c04e5e07d61f6b96443ebbb8cb75fe2464d Mon Sep 17 00:00:00 2001 From: hidekuro Date: Tue, 30 Jun 2020 02:23:08 +0900 Subject: [PATCH] Remove `--all` from git alias `glg` (#1853) --- modules/git/alias.zsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/git/alias.zsh b/modules/git/alias.zsh index 3076708..95b2a0d 100644 --- a/modules/git/alias.zsh +++ b/modules/git/alias.zsh @@ -190,7 +190,7 @@ if ! zstyle -t ':prezto:module:git:alias' skip 'yes'; then alias gls='git log --topo-order --stat --pretty=format:"${_git_log_medium_format}"' alias gld='git log --topo-order --stat --patch --full-diff --pretty=format:"${_git_log_medium_format}"' alias glo='git log --topo-order --pretty=format:"${_git_log_oneline_format}"' - alias glg='git log --topo-order --all --graph --pretty=format:"${_git_log_oneline_format}"' + alias glg='git log --topo-order --graph --pretty=format:"${_git_log_oneline_format}"' alias glb='git log --topo-order --pretty=format:"${_git_log_brief_format}"' alias glc='git shortlog --summary --numbered' alias glS='git log --show-signature'