if i checkout previous commit how to go back code example
Example 1: how to return to latest version on git
// we need to type both of them git fetch origin git reset --hard origin/master
Example 2: reset to commit
# This will detach your HEAD, that is, leave you with no branch checked out:
git checkout 0d1d7fc32
# to go back to original branch, git checkout master