git-push.md
July 15, 2021 ยท View on GitHub
Bookmarks tagged [git-push]
www.codever.land/bookmarks/t/git-push
git push --force-with-lease vs. --force
https://stackoverflow.com/questions/52823692/git-push-force-with-lease-vs-force
--force overwrites a remote branch with your local branch.
--force-with-lease is a safer option that will not overwrite any work on the remote branch if more commits were added to the remote bran...