roll back to commit git code example
Example 1: roll back last commit in git
git reset --soft HEAD~1
Example 2: how do i get the last commit
$ git reset --soft HEAD~1
Example 3: revert back to a commit git
git reset --hard 4a155e5
Will move the HEAD back to where you want to be
Example 4: git how to roll back to a commit
git revert <commit hash>
git reset HEAD~1
git checkout commit-hash-here -- file/location/and/name
Example 5: revert to commit git
# This will detach your HEAD, that is, leave you with no branch checked out:
git checkout 0d1d7fc32