Back

Explore Courses Blog Tutorials Interview Questions
0 votes
2 views
in DevOps and Agile by (19.4k points)

I accidentally amended my previous commit. The commit should have been separate to keep a 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)

1 Answer

0 votes
by (27.5k points)

All you need to do is to create a new commit with the same details as your current HEAD commit, but with the parent as the previous version of HEAD. The command, 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.

# First move the current head so that it's pointing at the old commit

# Now, leave the index intact for redoing the commit.

# The command, HEAD@{1} gives you "the commit that HEAD pointed at before 

# it was moved to where it currently points at". Note that this is different from HEAD~1, which gives you "the commit that is the

# parent node of the commit that HEAD is currently pointing to."

git reset --soft HEAD@{1}

# Now you need to commit the current tree using the commit details of the previous

# HEAD commit. Remember 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}

Browse Categories

...