Answers for "how to move to previous commit in git"

0

git move branch to previous commit

git checkout 1258f0d0aae    #detach from master
git branch -f master HEAD   #exactly as above

#optionally reattach to master
git checkout master
Posted by: Guest on August-12-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 to previous commit in git"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language