- First do a
git add
(if its a new file to be tracked), thengit stash
- Check with
git stash list
- Reapply with
git stash apply
- Otherwise use
git stash pop
to recover the files and discard the stash - Creating a branch from a stash:
git stash branch testchanges