From 358a72a88bc212f7680df1119ef0e5cf517f80f6 Mon Sep 17 00:00:00 2001 From: Gaetan Semet Date: Thu, 14 Feb 2013 15:39:05 +0100 Subject: [PATCH] New aliases :gg and gk --- plugins/git/git.plugin.zsh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/plugins/git/git.plugin.zsh b/plugins/git/git.plugin.zsh index 154aa6db1..e554d9cfa 100644 --- a/plugins/git/git.plugin.zsh +++ b/plugins/git/git.plugin.zsh @@ -58,6 +58,9 @@ 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 gk='gitk' + # Will cd into the top of the current repository # or submodule. alias grt='cd $(git rev-parse --show-toplevel || echo ".")'