From b74707ddedbe4425d19fa53dc5cc64474aad2025 Mon Sep 17 00:00:00 2001 From: Graeme West Date: Tue, 5 Jul 2011 16:02:24 +0100 Subject: [PATCH] Changed super-pretty git log alias to 'glpp' for consistency with the rest of the Git commands, which also start with 'g'. --- 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 2fd67b278..610a759c9 100644 --- a/plugins/git/git.plugin.zsh +++ b/plugins/git/git.plugin.zsh @@ -29,8 +29,8 @@ alias glg='git log --stat --max-count=5' compdef _git glg=git-log alias glp='git log --pretty=short --graph' compdef _git glp=git-log -alias lg="git log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --date=relative" -compdef _git lg="git-log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --date=relative" +alias glpp="git log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --date=relative" +compdef _git glpp="git-log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --date=relative" # Git and svn mix alias git-svn-dcommit-push='git svn dcommit && git push github master:svntrunk'