Git/stash
from HTYP, the free directory anyone can edit if they can prove to me that they're not a spambot
< Git
Action: saves your local modifications away and reverts the working directory to match the HEAD commit
Commands
git stash applyreplaces current files with the most recently stashed files (but does not delete the stash)git stash dropdeletes the newest stash (i.e. the most recently stashed files)git stash listdisplays existing stashes, for all branches, sorted newest-to-oldest
