show/hide this revision's text 3 added 17 characters in body

git stash - Great for quickly parking what you're working on, switching to another branch to work on, and then going back to what you were doing. Saves making a commit (not that spurious commits are a problem in git thanks to git squashrebase -i and squashing)

git commit --amend - for those of us who have a terrible habit of committing before compiling/testing.

show/hide this revision's text 2 fixed error

git stash - Great for quickly parking what you're working on, switching to another branch to work on, and then going back to what you were doing. Saves making a commit (not that spurious commits are a problem in git thanks to git squash)

git amendcommit --amend - for those of us who have a terrible habit of committing before compiling/testing.

show/hide this revision's text 1

git stash - Great for quickly parking what you're working on, switching to another branch to work on, and then going back to what you were doing. Saves making a commit (not that spurious commits are a problem in git thanks to git squash)

git amend - for those of us who have a terrible habit of committing before compiling/testing.