Amend a commit that wasn’t the previous commit [duplicate]

You can use git rebase to solve this. Run git rebase -i sha1~1 where sha1 is the commit hash of the one you want to change. Find the commit you want to change, and replace “pick” with “edit” as described in the comments of the rebase editor. When you continue from there, you can edit that commit.

Note that this will change the sha1 of that commit as well as all children — in other words, this rewrites the history from that point forward. You can break repositories doing this, but if you haven’t pushed, it’s not as much of a big deal.

Leave a Comment