From f56987c3fe1823a91a0eb442b0ae9386441dc3f0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torsten=20B=C3=BChl?= Date: Thu, 5 Sep 2013 14:37:37 +0200 Subject: [PATCH] Add commonly used git stash aliases --- plugins/git/git.plugin.zsh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/plugins/git/git.plugin.zsh b/plugins/git/git.plugin.zsh index d8ea3ae0c..c7e98654a 100644 --- a/plugins/git/git.plugin.zsh +++ b/plugins/git/git.plugin.zsh @@ -85,7 +85,11 @@ compdef _git gm=git-mergetool alias gg='git gui citool' alias gga='git gui citool --amend' alias gk='gitk --all --branches' + alias gsts='git stash show --text' +alias gsta='git stash' +alias gstp='git stash pop' +alias gstd='git stash drop' # Will cd into the top of the current repository # or submodule.