How to re-apply already reverted back changes in git
- Made some changes to "git push"
- git revert "2398239" - later
- Made some changes to "git push"
- I would like to pullback changes from the revert in [2]
How should I do this?
How to re-apply already reverted back changes in git
How should I do this?
When doing the step 2, you will get a new commit ID. You can revert that commit ID. This is basiclly reverting the revert and same as reverting a comit.
Made some changes to "git push" //commit id "2398239"
git revert "2398239" - later // commit id "2345678"
Made some changes to "git push"
git revert "2345678"