Answers for "how to revert to a specific commit in origin"

0

how to revert to a specific commit in origin

#SM

git checkout master
git reset --hard e3f1e37
git push --force origin master
# Then to prove it (it won't print any diff)
git diff master..origin/master
Posted by: Guest on July-21-2021

Code answers related to "how to revert to a specific commit in origin"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language