What does revert commit mean in git? Cause I pressed it when I right click on that specific highlighted commit.
Asked
Active
Viewed 933 times
-2

TheBAST
- 2,680
- 10
- 40
- 68
-
1The definition of [revert](https://www.dictionary.com/browse/revert) in a dictionary is pretty spot on as to what it means. You get a new commit that removes the changes in that commit. – fredrik Nov 21 '19 at 09:32
1 Answers
1
The git revert page in the official git documentation expains in detail what revert
does: revert the changes that the related patches introduce, and record some new commits that record them

kowsky
- 12,647
- 2
- 28
- 41