From e29049a4e35eca6fb418ae52c0baa5b578e0378f Mon Sep 17 00:00:00 2001 From: Sorin Ionescu Date: Fri, 10 Feb 2012 16:37:20 -0500 Subject: [PATCH] Fixed the git stash save alias. --- plugins/git/alias.zsh | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/plugins/git/alias.zsh b/plugins/git/alias.zsh index 8bdbd56..5a9be8d 100644 --- a/plugins/git/alias.zsh +++ b/plugins/git/alias.zsh @@ -205,10 +205,8 @@ alias gsL='git stash show --patch --stat' compdef _git gsL=git-stash alias gsp='git stash pop' compdef _git gsp=git-stash -alias gss='git stash save' +alias gss='git stash save --include-untracked' compdef _git gss=git-stash -alias gsS='git stash save --include-untracked' -compdef _git gsS=git-stash alias gsS='git stash save --patch --no-keep-index' compdef _git gsS=git-stash