Add command to stash untracked changes too

This commit is contained in:
James Skemp 2021-09-10 16:57:13 -05:00
parent a818457a3e
commit daa9c75a77
1 changed files with 3 additions and 0 deletions

View File

@ -11,6 +11,9 @@ git stash
git pull
git stash apply
# Also stash untracked changes.
git stash -u
# Drop the most recent stash.
git stash drop