reset to origin master code example
Example 1: git match remote master
git fetch origin
git reset --hard origin/master
Example 2: git reset to origin/master
git reset --hard origin/master
Example 3: revert to master origin branch git
git checkout mybranch
git reset --hard origin/mybranch
Example 4: how to reset local master to origin master
git checkout -B master origin/master
//for branch
git checkout -B <branch> origin/<branch>