Answers for "how to move back to previous commit in github"

CSS
1

get back some commits git

git revert {commit_id}'
Posted by: Guest on September-09-2020
0

how to move to previous commit in git

git checkout <commit-id> .
git add .
git commit -m "Reverting to <commit-id>"
git push
Posted by: Guest on June-08-2021
0

how to move to previous commit in git

$ git checkout <commit-id> .
Posted by: Guest on June-08-2021

Code answers related to "how to move back to previous commit in github"

Browse Popular Code Answers by Language