git how to go back one version 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: 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