how to completely reset local branch git code example
Example 1: git reset branch
git fetch origin
git reset --hard origin/branch_name
Example 2: git reset hard to remote
git reset --hard origin/master; git commit -m 'reset to remote';git push --force local dev