(Note, I’m not looking for the answer git rebase -i)
In mercurial, I can “reopen” a commit by importing it into my patch queue:
hg qimport tip
The commit is “open” in the sense that it’s just like before I had committed it, I can revert, do hg diff, hg status, etc. How do I do this in git?
(Everything I’ve found on the web suggests git rebase -i and then choose edit, but that’s different, because the commit is not “open” in the same way.)
You just need to move your HEAD pointer up without making any changes to your working copy:
Reset moves the pointer, and the soft option specifies that it shouldn’t change any of your files. The default is mixed, which will reset your index, and the hard option will actually remove the changes since that commit in your working copy.
HEAD is a “magic” git pointer that is always pointing to the current ref (i.e. the parent of your working copy). The caret (^) indicates the parent. You can use this repeatedly, e.g. HEAD^^ refers to the parent of the last commit.