vote up 0 vote down star
1

Possible Duplicate:
How to undo “git commit --amend” done instead of “git commit”

Hi,

I commit my change to git using 'git commit --amend', but I should have done 'git commit'. Now my changes are attached to other developers' changes. I have NOT done a 'git push' so other people have not seen my 'git commit --amend' error.

So what can I do to fix it? What I want is my changes is a separate 'git commit' instead of attaching it other developers' commit.

Thank you.

flag

20% accept rate

closed as exact duplicate by Dustin, Pat Notz, Charles Bailey, Jakub Narębski, Greg Hewgill Oct 21 at 20:54

2 Answers

vote up 5 vote down

Looks like this question is talking about what you want to do. If not, then sorry for misunderstanding your question.

link|flag
vote up 1 vote down

Sidenote: How didn't you notice that you made a mistake: with "git commit --amend" you have existing commit message in editor, instead of just a template as in the case of "git commit"... unless you used '-m' option to "git commit", which while sometimes useful is not something that I would recommend to use in real repositories.


The simplest solution would be to use the power of reflog. Running git reflog should give you something like the following:

$ git reflog
e96454d HEAD@{0}: commit (amend): Baz
ede30a6 HEAD@{1}: commit: Bar
21495d1 HEAD@{2}: commit: Foo

First, let's rewind to the state before mistaken amending:

$ git reset --hard HEAD@{1}
HEAD is now at ede30a6 Bar

This of course updates reflog:

$ git reflog
ede30a6 HEAD@{0}: HEAD@{1}: updating HEAD
e96454d HEAD@{1}: commit (amend): Baz
ede30a6 HEAD@{2}: commit: Bar
21495d1 HEAD@{3}: commit: Foo

Now you need to checkout state that you had at amend:

$ git checkout HEAD@{1} -- .  # or 'e96454d' instead of 'HEAD@{1}' in this example

And then do a commit:

$ git commit -a
[master d6272c1] Baz
 1 files changed, 1 insertions(+), 0 deletions(-)

HTH.


A better solution can be found in Charles Bailey answer for 'How to undo “git commit --amend” done instead of “git commit”' this question is duplicate of.

link|flag

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