git -h reset code example
Example 1: git reset origin
git fetch origin
git reset --hard origin/master
Remember this forever
Example 2: git reset hard
git reset --hard f414f31
git reset --soft HEAD@{1}
git commit -m "Reverting to the state of the project at f414f31"
Example 3: git revert all commits to pervious commit
git revert --no-commit <commithash>..HEAD #revert changes in range of commits from head to back to that commit hash
Example 4: how to revert branch to old commit
git revert --no-commit 0766c053..HEAD
git commit