🗃️ git stash

Hold on to changes without committing them

Basic way to create and apply a stash

command line
git stash
git stash pop

Manage your stashes more easily by giving them a name:

command line
git stash save coolstuff

List out all stashes:

command line
git stash list

Apply a stash based on its index:

command line
git stash apply 1

Questions? Let's chat

Open Discord