Stashing
git stashlist down all stashes
git stash listto apply a stash and keep it in the stash stack
git stash apply stash@{0}
to apply a stash and remove it from the stash stack
git stash pop stash@{0}
to give stash a name
git stash save "stashName"turn a stash into a branch
git stash branch [branchname] [stash]