Git/stash
< Git
Jump to navigation
Jump to search
Action: saves your local modifications away and reverts the working directory to match the HEAD commit
Commands
git stash apply
replaces current files with the most recently stashed files (but does not delete the stash)git stash drop
deletes the newest stash (i.e. the most recently stashed files)git stash list
displays existing stashes, for all branches, sorted newest-to-oldest