diff options
author | Robby Russell <robby@planetargon.com> | 2013-10-24 20:24:59 -0700 |
---|---|---|
committer | Robby Russell <robby@planetargon.com> | 2013-10-24 20:24:59 -0700 |
commit | 86d57e83ed09280cc9b535b38699efb557c58019 (patch) | |
tree | 358bfbffde7a6eb5bce3f94c6f5d11ad8398f3c4 | |
parent | 07ad2bad66e794cde6ca6c3c7f4548d5a90a1b84 (diff) | |
parent | 5bf20572cc303cd02a915c91ffa91f96a26bba39 (diff) | |
download | zsh-86d57e83ed09280cc9b535b38699efb557c58019.tar.gz zsh-86d57e83ed09280cc9b535b38699efb557c58019.tar.bz2 zsh-86d57e83ed09280cc9b535b38699efb557c58019.zip |
Merge pull request #2078 from tbuehl/master
Add commonly used git stash aliases to git plugin
-rw-r--r-- | plugins/git/git.plugin.zsh | 4 |
1 files changed, 4 insertions, 0 deletions
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. |