From 186a78d65b01af8aacdeaaa71d39699d2f475b18 Mon Sep 17 00:00:00 2001 From: Sathish Manohar Date: Fri, 10 Jan 2025 15:25:35 +0530 Subject: [PATCH] feat(git): Add alias for git stash untracked with message --- plugins/git/git.plugin.zsh | 1 + 1 file changed, 1 insertion(+) diff --git a/plugins/git/git.plugin.zsh b/plugins/git/git.plugin.zsh index f34c0726b..042504371 100644 --- a/plugins/git/git.plugin.zsh +++ b/plugins/git/git.plugin.zsh @@ -405,6 +405,7 @@ alias gwtls='git worktree list' alias gwtmv='git worktree move' alias gwtrm='git worktree remove' alias gstu='gsta --include-untracked' +alias gstum='gsta --include-untracked --message' alias gtl='gtl(){ git tag --sort=-v:refname -n --list "${1}*" }; noglob gtl' alias gk='\gitk --all --branches &!' alias gke='\gitk --all $(git log --walk-reflogs --pretty=%h) &!'