From 71a7e1a8c1e5769c62ce8dbd45358c2d202cdab5 Mon Sep 17 00:00:00 2001 From: Roman Date: Sat, 15 Feb 2020 18:28:02 +0100 Subject: [PATCH] git: add alias for git stash --include-untracked (#8617) --- plugins/git/README.md | 1 + plugins/git/git.plugin.zsh | 1 + 2 files changed, 2 insertions(+) diff --git a/plugins/git/README.md b/plugins/git/README.md index 7878f747b998..42a583de8996 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 d8c4cffd10c6..380ab76d8a7d 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'