git hard reset to branch code example
Example 1: git match remote master
git fetch origin
git reset --hard origin/master
Example 2: reset branch on local git
git fetch origin
git reset --hard origin/master
Example 3: git reset branch
git fetch origin
git reset --hard origin/branch_name
Example 4: git reset remote origin
$ git remote set-url origin https://github.com/USERNAME/REPOSITORY.git
Example 5: git checkout reset hard
git checkout reset HEAD~1