Stash Commands
Temporary Storage for Modifications
git stash [save] [msg]
Store all local modifications to a stash. Save and the msg parameters are optional.
git stash apply [stash]
Brings in changes from the specified stash to the work area. Ommit the Apply the changes from the last pop and delete that stash. Can specify a stash at the end. List all of the stashes currently available. Outputs the difference in the stash and the parent. [stash] can be left off and the system will show the latest stash. Remove one stash from the list. If the [stash] is left off, the command drops the latest version. Removes all stashes. Create and checkout the branch named [branchname] using the [stash] listed. If [stash] is left off of the command, the latest is used.
git stash pop
git stash list
git stash show [stash]
git stash drop [stash]
git stash clear
git stash branch [branchname] [stash]