Git Stash Stack Overflow

git stash # stash your work
git stash list # list your stashes
git stash pop # re-apply and remove from stash list
git stash apply # re-apply but keep on stash list
git stash drop # clear stash list
Matthijsmgj