Undo last git commit

To undo a git commit locally, do the following.

git log
git revert __my_commit_id__

The following will also work. –hard would physically remove your commit, while –soft would simply jump back one commit.

git reset --hard HEAD~1
git reset --soft HEAD~1

ref: http://stackoverflow.com/questions/927358/how-to-undo-the-last-git-commit

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s