⌘K
Options (1)
-n, --no-commitbooleanDon't create new commits, just change the working tree
Example:
git revert {{[-n|--no-commit]}} {{0c01a9..9a1743}}Examples (6)
Revert the most recent commit
git revert HEADRevert the 5th last commit
git revert HEAD~4Revert a specific commit
git revert 0c01a9Revert multiple commits
git revert branch_name~5..branch_name~2Don't create new commits, just change the working tree
git revert [-n|--no-commit] 0c01a9..9a1743Cancel a Git revert after a merge conflict
git revert --abortmade by @shridhargupta | data from tldr-pages