Skip to content

Instantly share code, notes, and snippets.

  • Save melakhvision/bdbe9460823c1a243a476d84b7ba64dd to your computer and use it in GitHub Desktop.
Save melakhvision/bdbe9460823c1a243a476d84b7ba64dd to your computer and use it in GitHub Desktop.
How to solve this problem of "! [rejected] master -> master (fetch first)"
First Do this ...
git fetch origin master
git merge master
Then, do this ...
git fetch origin master:tmp
git rebase tmp
git push origin HEAD:master
git branch -D tmp
Now everything works well.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment