mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-12 00:40:07 +00:00
Add git alias to clear entire stash (#5306)
Using the "gstc" alias runs "git stash clear" that clears every stash index
This commit is contained in:
parent
66179bdab8
commit
9981214437
1 changed files with 1 additions and 0 deletions
|
@ -217,6 +217,7 @@ alias gss='git status -s'
|
|||
alias gst='git status'
|
||||
alias gsta='git stash save'
|
||||
alias gstaa='git stash apply'
|
||||
alias gstc='git stash clear'
|
||||
alias gstd='git stash drop'
|
||||
alias gstl='git stash list'
|
||||
alias gstp='git stash pop'
|
||||
|
|
Loading…
Reference in a new issue