Answers for "move to the previous commit"

5

move to last commit

git reset --hard HEAD
Posted by: Guest on May-12-2020
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

Code answers related to "move to the previous commit"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language