I've pushed a commit and I want to revert changes introduced by this commit by applying and committing a reversed patch. How do I do it?
Asked
Active
Viewed 7.9k times
3 Answers
143
Use
git revert HEAD
This will create a patch that reverts the last commit and commit that patch as a new commit.
If you want to revert a specific earlier version, use
git revert <revision>
50
Sounds like you want to use git-revert.
https://www.kernel.org/pub/software/scm/git/docs/git-revert.html
Laith Shadeed
- 4,152
- 2
- 22
- 27
Kris K.
- 988
- 9
- 7
-
1This is not a good option if you use a PR flow; in those cases you will want to make a new commit that put the changes from one commit back to what they were. – b01 Aug 23 '17 at 01:19
4
simply use
for committed file:
git revert <SHA1 ID>
for non-committed file:
git reset --hard HEAD
Amit
- 1,731
- 17
- 34