Answers for "git revert last 2 commits after push"

0

how to undo last pushed commit

git revert <commit_hash>
Posted by: Guest on December-02-2020
0

git revert last 2 commits

$ git revert --no-commit D
$ git revert --no-commit C
$ git revert --no-commit B
$ git commit -m "the commit message"
Posted by: Guest on September-18-2020

Code answers related to "TypeScript"

Browse Popular Code Answers by Language