git reset remote branch code example

Example 1: how to reset git master branch by remote

git fetch origin
git reset --hard origin/master

Example 2: git reset origin branch

git checkout mybranch
git reset --hard origin/mybranch

Example 3: git reset branch

git fetch origin
git reset --hard origin/branch_name

Example 4: git reset remote

# local
git reset <commit-hash>
# or
git reset --hard <commit-hash>

# remote
git push -f origin master

Example 5: git reset hard to remote

git reset --hard origin/master; git commit -m 'reset to remote';git push --force local dev

Example 6: git reset head to commit remote

git reset --hard <commit-hash> #Please double check your commit hash
 git push -f origin master # this will force update and remove commits after this one

Tags:

Misc Example