From 1dd09dc2a25e95ec750f5ee21e49919ddbc3bdf7 Mon Sep 17 00:00:00 2001 From: ChaYoung You Date: Mon, 23 Mar 2015 02:32:31 +0900 Subject: [PATCH] Remove `--max-count` option from `git log` --- plugins/git/git.plugin.zsh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/git/git.plugin.zsh b/plugins/git/git.plugin.zsh index 9da448814..edee571eb 100644 --- a/plugins/git/git.plugin.zsh +++ b/plugins/git/git.plugin.zsh @@ -60,9 +60,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=10' +alias glg='git log --stat' compdef _git glg=git-log -alias glgg='git log --graph --max-count=10' +alias glgg='git log --graph' compdef _git glgg=git-log alias glgga='git log --graph --decorate --all' compdef _git glgga=git-log