First, I want to take back what I said about Git's sucking. I was really much too kind. It's far beyond sucking, into really awful.
I accidentally committed some code that wasn't ready. OK, no problem, I'll do a soft reset -- undo the commit and leave the changes in the work area.
That seemed to work and I went to do a pull. I got:
error: Entry '[the changed file]' would be overwritten by merge. Cannot merge.
That's good, right? The file is altered in the work area, so it doesn't want to do a pull. Of course, the file wasn't altered in the remote repository so shouldn't really be an issue but heck, if you want all Git's mystical goodness, you have to put up with a little weirdness. I'll just stash my changes somewhere for the time being:
git diff [the changed file]
Nothing. No differences. At this point, I don't care whether I recover the changes, I just need to be able to do a pull. Of course, the command for "list what has changed" is the same as the command for "erase all my changes" and "switch to another branch":
git checkout
[the changed file]
OK, so two things are agreeing: git-pull and git-checkout both think the file has changed, even though git-diff doesn't. Let's see if I can erase my nonexistent changes:
git checkout [the changed file]
git checkout
[the changed file]
So, nope. Let's try a hard checking out by commit-id:
git checkout 76f9882093515e9adb99d7004272d837ea1ba2ec
M [the changed file] Note: moving to "76f9882093515e9adb99d7004272d837ea1ba2ec" which isn't a local branch
Yes, yes, it is a local branch. No, wait, it's a commit, on a local branch. Wait, what?
Screw it, let's do a hard reset:
git reset 76f9882093515e9adb99d7004272d837ea1ba2ec
[the changed file]: needs update
Sigh. I don't know if that's a warning, an error, or just information. Resorting to trying commands at random:
git checkout [the changed file]
git checkout
Now everything was fine. Well, most, but not all, of my changes was gone but at last, I am once again free to frolic in the meadow of Git.
Some questions:
- What is the correct way to undo accidentally invocation of the commit command.
- What do you call the invocation of the commit command, given that the nouned-verb
commitis already heavily overloaded - What does it mean that
git checkoutsays a file is changed butgit diffmeans it is not? - In the situation of (3), what should I do?
- I got a perfect score on my GREs, I've been a programmer for 20 years, what do I tell my boss when he says that if I don't understand how to use GIT, maybe the college kids we're looking to hire won't either and we should switch to SVN?
Edit:
{This part probably belongs in rants but I want everyone who sniffed "If you only read the manual on it..." to read it.)
I wanted to undo a commit and I thought, after reading the documentation that correct command was
git reset --soft HEAD^
Thanks to Max, I know realize that the foregoing command resets the HEAD in the repository, which I wanted, but not the index, which I also wanted. What is the command both reset the HEAD and to copy the now-reset HEAD to the index? Well, of course, it's this:
git reset --soft HEAD^
git reset
Anyone who doesn't instantly see why that's an error in UI design probably should not be working as a programmer. It's a much-worse version of signing out of Windows by pressing the "Start" button -- made still worse by the fact that reset is typically done in a crisis: something already gone wrong and the user is trying to fix it, without the luxury of a lot of time.
rm -rf /*– Klaus Byskov Pedersen Jan 4 '11 at 21:11