How To Revert a Merge in GIT

Author: , November 19th, 2020

To revert the local branch:

To revert the remote branch AFTER the previous step has been performed:

How To Revert the Last git Commit

Author: , July 9th, 2020

shell$ git log | head -1 commit a203e1bd04718bff10a3df4a3389c493c97c0432 Use the commit string as the last argument to the git revert command: shell$ git revert -m 1 a203e1bd04718bff10a3df4a3389c493c97c0432