roll back from git code example
Example 1: revert back to a commit git
git reset --hard 4a155e5
Will move the HEAD back to where you want to be
Example 2: git rollback
git reset --hard <tag/branch/commit id>
git reset --hard 4a155e5
Will move the HEAD back to where you want to be
git reset --hard <tag/branch/commit id>