reset git repo code example
Example 1: git reset from repository
git fetch --all
git reset --hard origin/master
Example 2: git reset branch
git fetch origin
git reset --hard origin/branch_name
git fetch --all
git reset --hard origin/master
git fetch origin
git reset --hard origin/branch_name