summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
Diffstat (limited to 'plugins')
-rw-r--r--plugins/git/README.md1
-rw-r--r--plugins/git/git.plugin.zsh1
2 files changed, 2 insertions, 0 deletions
diff --git a/plugins/git/README.md b/plugins/git/README.md
index 7878f747b..42a583de8 100644
--- a/plugins/git/README.md
+++ b/plugins/git/README.md
@@ -154,6 +154,7 @@ plugins=(... git)
| gstl | git stash list |
| gstp | git stash pop |
| gsts | git stash show --text |
+| gstu | git stash --include-untracked |
| gstall | git stash --all |
| gsu | git submodule update |
| gsw | git switch |
diff --git a/plugins/git/git.plugin.zsh b/plugins/git/git.plugin.zsh
index d8c4cffd1..380ab76d8 100644
--- a/plugins/git/git.plugin.zsh
+++ b/plugins/git/git.plugin.zsh
@@ -236,6 +236,7 @@ alias gstd='git stash drop'
alias gstl='git stash list'
alias gstp='git stash pop'
alias gsts='git stash show --text'
+alias gstu='git stash --include-untracked'
alias gstall='git stash --all'
alias gsu='git submodule update'
alias gsw='git switch'