Git

Stashes

Temporarily save changes in the working tree

git stash save "stash message"

List all stashes

git stash list

Apply changes from a specific stash

git stash apply <stash>

Remove a specific stash

git stash drop <stash>

Remove all stashes

git stash clear

On this page