Git Quick Reference A fairly simple Git reference listing

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 and it pulls the default stash.</p>

git stash pop

Apply the changes from the last pop and delete that stash. Can specify a stash at the end.

git stash list

List all of the stashes currently available.

git stash show [stash]

Outputs the difference in the stash and the parent. [stash] can be left off and the system will show the latest stash.

git stash drop [stash]

Remove one stash from the list. If the [stash] is left off, the command drops the latest version.

git stash clear

Removes all stashes.

git stash branch [branchname] [stash]

Create and checkout the branch named [branchname] using the [stash] listed. If [stash] is left off of the command, the latest is used.