Git Stash is Sweet
Earlier I mentioned a method of storing away changes in a patch, rebasing and then applying the patch so you don’t have to commit beforehand.
Yesterday Janson found git-stash, and it is sweet.
- type “git stash”
- do your changes
- type “git stash apply”
- profit!