Answers for "move back to a commit git"

CSS
0

how to move to previous commit in git

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

git move back one commit

# This will detach your HEAD, that is, leave you with no branch checked out:
git checkout 0d1d7fc32
Posted by: Guest on November-06-2020

Browse Popular Code Answers by Language