Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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:

  1. What is the correct way to undo accidentally invocation of the commit command.
  2. What do you call the invocation of the commit command, given that the nouned-verb commit is already heavily overloaded
  3. What does it mean that git checkout says a file is changed but git diff means it is not?
  4. In the situation of (3), what should I do?
  5. 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.

share|improve this question
9  
Wouldn't you agree that "Resorting to trying commands at random" can make any tool "far beyond sucking, into really awful"? I would have used SO or at least Google for your question "1.". Before all the randomness. – VonC Jan 4 '11 at 21:10
7  
Buy a book and read it. You are stumbling around in the dark flailing your tools randomly and expecting results. The tools are not at fault here. – meagar Jan 4 '11 at 21:10
10  
linux sucks... resorting to random commands rm -rf /* – Klaus Byskov Pedersen Jan 4 '11 at 21:11
2  
As to Q5: I'd say chances are the kid is smart enough to read the docs first... – Eiko Jan 4 '11 at 21:17
5  
@Malvolio: You say that you "read /two/ books and the man page". But then you go on to say that you thought of the index "as a local echo of the HEAD". If after all that reading, you still managed to walk away with such a wacky misconception of such a fundamental concept in Git, then I'm not surprised that you find basic Git operations confusing. Git is not perfect, and definitely has issues, both in the UI and documentation. But you have not run into any of those yet. It's like you have stuck your finger into the electric socket and the plug in your mouth when trying to set up a table lamp. – Jeet Jan 5 '11 at 7:47
show 11 more comments

closed as not constructive by ceejayoz, meagar, mikerobi, Josh Lee, Jasarien Jan 5 '11 at 14:23

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

2 Answers

up vote 12 down vote accepted

You seem to miss the concept of git so-called staging area or index file.

git reset --soft just moves branch pointer leaving index untouched, that's why your diff is empty. To revert commit completely (implying it was a git commit -a or git add followed by git commit) you must do

git reset --soft HEAD^
git reset

Yes, yes, it is a local branch. No, wait, it's a commit, on a local branch. Wait, what?

Checking out commit hash leaves your repository's HEAD in detached state (that is, HEAD points to a commit, not a branch). You can still work in this state, but you may lose your changes if you checkout other branch/commit since HEAD will be moved and nothing will reference your changes.

To save your changes and clean up working directory, use git stash command. Git stash can preserve your unstaged and/or staged changes, leaving working directory in a state suitable for pull/merge/etc.

share|improve this answer
I was aware of the staging area, but obviously, I have an erroneous picture of its purpose. I had thought of it as a local echo of the HEAD, which is clearly false. A couple of follow-up questions: 1. Does git reset without arguments copy the HEAD to the index? 2. If not, what does? 3. How do I re-attach the HEAD to .. uh, the right thing? – Malvolio Jan 4 '11 at 21:34
   
1. yes, git reset sets index state to the state of HEAD. 3. just git checkout some-local-branch – max Jan 4 '11 at 21:37
also, since you have committed changes, you can get them back using reflogs (if you didn't explicitly disabled or removed them). – max Jan 4 '11 at 21:56
1  
wouldn't git reset HEAD^ be the same than your two "reset"? A reset is by default made in a --mixed mode (move HEAD and reset INDEX while keeping the working tree unchanged) – VonC Jan 5 '11 at 12:38
I second what VonC said. git reset HEAD^ is what you want to reset a commit back to where things were before. Use git reset --soft HEAD^ only if you really want to keep things exactly like they were before the commit, in terms of the staging area. But under certain conditions, this "soft" can turn into a "hard" reset, so use the soft only if you are going to proceed directly to re-commiting (after a minor change or two). – DavidG Jan 14 '12 at 20:45

Have a quick look at the three types of diffs.

share|improve this answer
If I understand what that article is saying and what you are implying, the soft reset leaves the index and the working tree the same as each other, but the HEAD different (properly reset), whereas I need the the index and the HEAD to be the same. Is that right? What is the command for accomplishing that? I'm sure it's git checkout something, because everything is git checkout something, but what? – Malvolio Jan 4 '11 at 21:20

Not the answer you're looking for? Browse other questions tagged or ask your own question.