I accidentally amended my previous commit. The commit should have been separate to keep history of the changes I made to a particular file.

Is there a way to undo that last commit? If I do something like git reset --hard HEAD^, the first commit also is undone.

(i have not yet pushed to any remote directories)

link|improve this question

Thanks for editing title, Jakub. Much clearer now :) – Jesper Rønn-Jensen Sep 23 '09 at 11:25
See also answers in duplicate: stackoverflow.com/questions/1597927/… – Jakub NarÄ™bski Oct 21 '09 at 22:21
The duplicate was removed. – kynan Sep 19 '11 at 20:19
feedback

3 Answers

up vote 109 down vote accepted

What you need to do is to create a new commit with the same details as the current HEAD commit, but with the parent as the previous version of HEAD. git reset --soft will move the branch pointer so that the next commit happens on top of a different commit from where the current branch head is now.

# Move the current head so that it's pointing at the old commit
# Leave the index intact for redoing the commit
git reset --soft HEAD@{1}

# commit the current tree using the commit details of the previous
# HEAD commit. (Note that HEAD@{1} is pointing somewhere different from the
# previous command. It's now pointing at the erroneously amended commit.)
git commit -C HEAD@{1}
link|improve this answer
2  
better than my answer, +1 :) – knittl Sep 22 '09 at 10:29
Very good! Thanks! – Jesper Rønn-Jensen Sep 23 '09 at 11:17
1  
Very cool, +1. I even did it with the second last amend view into git reflog to find the correct number e.g. {2}. – JJD Jul 12 '11 at 12:19
1  
Just to be clear, the first command is a true "undo". It produces the HEAD, working directory (unchanged), and index state prior to git commit --amend. The 2nd is a "redo" into a new commit. These work for any git commit, not just --amend. – cdunn2001 Dec 9 '11 at 21:54
So if you didn't amend with a new commit message that you need to salvage, the second part can just be a regular git commit. – Matt M. May 19 at 3:41
feedback

use the ref-log:

git branch fixing-things HEAD@{1}
git reset fixing-things

you should then have all your previously amended changes only in your working copy and can commit again

to see a full list of previous indices type git reflog

link|improve this answer
This wipes the index too -- still useful, but goes beyond a simple "undo". – cdunn2001 Dec 9 '11 at 21:56
feedback

You can always split a commit, From the manual

  • Start an interactive rebase with git rebase -i commit^, where commit is the commit you want to split. In fact, any commit range will do, as long as it contains that commit.
  • Mark the commit you want to split with the action "edit".
  • When it comes to editing that commit, execute git reset HEAD^. The effect is that the HEAD is rewound by one, and the index follows suit. However, the working tree stays the same.
  • Now add the changes to the index that you want to have in the first commit. You can use git add (possibly interactively) or git-gui (or both) to do that.
  • Commit the now-current index with whatever commit message is appropriate now.
  • Repeat the last two steps until your working tree is clean.
  • Continue the rebase with git rebase --continue.
link|improve this answer
3  
way too complicated. git reflog is all you need – knittl Sep 22 '09 at 10:14
Lots of steps yes, but each step is uncomplicated and easy to do. This worked for me and gets my vote. – OzBandit May 9 at 16:03
feedback

Your Answer

 
or
required, but never shown

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