From 5b15f3ab1e1d955baf3ee7f22e8fa3e406562b2e Mon Sep 17 00:00:00 2001 From: Sorin Ionescu Date: Thu, 19 Jan 2012 18:16:11 -0500 Subject: [PATCH] Fixed Git graph log aliases. --- plugins/git/alias.zsh | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/plugins/git/alias.zsh b/plugins/git/alias.zsh index 35f4c12..4fcdfd5 100644 --- a/plugins/git/alias.zsh +++ b/plugins/git/alias.zsh @@ -234,11 +234,13 @@ alias glo='git log --topo-order ${git_log_format_oneline}' compdef _git glo=git-log alias glO='git log --topo-order --date=short ${git_log_format_oneline_more}' compdef _git glO=git-log -alias glg='git log --graph --topo-order ${git_log_format_medium}' +alias glg='git log --topo-order --all --graph ${git_log_format_oneline}' compdef _git glg=git-log -alias gls='git log --graph --topo-order --stat ${git_log_format_medium}' +alias glG='git log --topo-order --all --graph --date=short ${git_log_format_oneline_more}' +compdef _git glG=git-log +alias gls='git log --topo-order --stat ${git_log_format_medium}' compdef _git gls=git-log -alias gld='git log --graph --topo-order --stat --patch --full-diff ${git_log_format_medium}' +alias gld='git log --topo-order --stat --patch --full-diff ${git_log_format_medium}' compdef _git gld=git-log alias glc='git shortlog --summary --numbered' compdef _git glc=git-shortlog