How to undo the last commit from a remote git repository?

December 31, 2020 - 1 min read

To undo the last commit from a remote git repository, you can use the git reset command.

First, you can use the,

git reset HEAD^

command. This will undo the last commit locally.

Then you can use the,

git push origin +HEAD

command to force push the local commit which was reverted to the remote git repository.

Feel free to share if you found this useful 😃.