git back to previous 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: git go back to previous commit
git checkout 12feg3435 #commit ID
Example 3: how to revert branch to old commit
git revert --no-commit 0766c053..HEAD
git commit