Git/stash
		
		
		
		
		
		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 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