Files
30-seconds-of-code/snippets/force-update-remote-branch.md
Isabelle Viktoria Maciohsek ed2f41b0d8 Bake dates into snippets
2021-06-13 19:47:48 +03:00

674 B

title, tags, firstSeen, lastUpdated
title tags firstSeen lastUpdated
Update remote branch after rewriting history branch,intermediate 2021-04-06T19:47:19+03:00 2021-04-13T21:10:59+03:00

Forces an update of the remote branch adter rewriting the history locally.

  • Use git push -f to force update the remote branch, overwriting it using the local branch's changes.
  • This operation is necessary anytime your local and remote repository diverge.
git push -f
git checkout patch-1
git pull
git rebase master
# Local `patch-1` branch has been rebased onto `master`, thus diverging
# from the remote `patch-1` branch

git push -f # Force update the remote `patch-1` branch