From 15c510bbef7f7ef512b8541afb81f6c7e9226d93 Mon Sep 17 00:00:00 2001 From: Gaetan Semet Date: Thu, 28 Feb 2013 14:59:59 +0100 Subject: [PATCH] gg and gga are now aliases dedicated to commit and only commit (and respectively amend commit) --- plugins/git/git.plugin.zsh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plugins/git/git.plugin.zsh b/plugins/git/git.plugin.zsh index dbfa8b5bf..2f73d9755 100644 --- a/plugins/git/git.plugin.zsh +++ b/plugins/git/git.plugin.zsh @@ -64,7 +64,8 @@ alias gwc='git whatchanged -p --abbrev-commit --pretty=medium' alias gf='git ls-files | grep' alias gpoat='git push origin --all && git push origin --tags' -alias gg='git gui' +alias gg='git gui citool' +alias gga='git gui citool --amend' alias gk='gitk --all --branches' # Will cd into the top of the current repository