The git revert
command expects a list of commit references.
The changes made by each commit will be reverted and a new commit will be made with the message: Revert "[REVERTED COMMIT MSG]"
This command expects your working tree to be clean, if you want to throw away your local changes checkout git reset
The command might me misleading. It does not revert the actual commit - as in, it does not remove the commit from your git history. It creates a new commit that revert the changes from the specified commits.
git revert <commit>... [--[no-]edit] [-n] [-m <parent-number>] [-s] [-S[<keyid>]]
git revert HEAD
The command above will:
git revert HEAD --edit
This option will open your editor and prompts you to edit the revert commit message.
git revert HEAD --no-commit
This option will not create a new commit. It will leave the reverse changes in your working tree.
Checkout the official documentation for full details