diff options
author | yleo77 <ylep77@gmail.com> | 2013-07-16 16:54:54 +0800 |
---|---|---|
committer | yleo77 <ylep77@gmail.com> | 2013-07-16 16:54:54 +0800 |
commit | 6041e4938cc559b908d83b5664166cc1fd02f31e (patch) | |
tree | c5e3391c839395320cbf78818787643eb345e796 /plugins | |
parent | 67b2781f6200a0dff35055eb67937a0df2be2c51 (diff) | |
download | zsh-6041e4938cc559b908d83b5664166cc1fd02f31e.tar.gz zsh-6041e4938cc559b908d83b5664166cc1fd02f31e.tar.bz2 zsh-6041e4938cc559b908d83b5664166cc1fd02f31e.zip |
set default value `--max-count=10`
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/git/git.plugin.zsh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/git/git.plugin.zsh b/plugins/git/git.plugin.zsh index 3bdf0c30f..9087a14ea 100644 --- a/plugins/git/git.plugin.zsh +++ b/plugins/git/git.plugin.zsh @@ -52,9 +52,9 @@ compdef gcount=git alias gcl='git config --list' alias gcp='git cherry-pick' compdef _git gcp=git-cherry-pick -alias glg='git log --stat --max-count=5' +alias glg='git log --stat --max-count=10' compdef _git glg=git-log -alias glgg='git log --graph --max-count=5' +alias glgg='git log --graph --max-count=10' compdef _git glgg=git-log alias glgga='git log --graph --decorate --all' compdef _git glgga=git-log |