浏览代码

git: add alias to `git stash --all` (#5511)

Stash tracked, ignored and untracked files. Leaves the working directory absolutely clean.
Gant Laborde 6 年之前
父节点
当前提交
69ba6e4359
共有 1 个文件被更改,包括 1 次插入0 次删除
  1. 1 0
      plugins/git/git.plugin.zsh

+ 1 - 0
plugins/git/git.plugin.zsh

@@ -239,6 +239,7 @@ alias gstd='git stash drop'
 alias gstl='git stash list'
 alias gstp='git stash pop'
 alias gsts='git stash show --text'
+alias gstall='git stash --all'
 alias gsu='git submodule update'
 
 alias gts='git tag -s'