git move head to origin master code example
Example: how to reset local master to origin master
git checkout -B master origin/master
//for branch
git checkout -B <branch> origin/<branch>
git checkout -B master origin/master
//for branch
git checkout -B <branch> origin/<branch>