Answers for "how to undo a git commit after push in main"

0

how to undo last pushed commit

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

github undo last pushed commit

git reset <previous label or sha1>
git commit -am "blabla"
git push -f <remote-name> <branch-name>
Posted by: Guest on January-12-2020

Code answers related to "TypeScript"

Browse Popular Code Answers by Language