Answers for "go on a previous commit"

1

after checking out a previous commit go back to latest commit

git checkout <commit hash>	# go to previous commit
git revert <commit hash>  	# revert action of going to previous commit
Posted by: Guest on July-27-2020
0

how to go to a previous commit state

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

Code answers related to "go on a previous commit"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language