Skip to content

Instantly share code, notes, and snippets.

View GorkemSay's full-sized avatar
🎯
Focused

Görkem Say GorkemSay

🎯
Focused
View GitHub Profile
@sharbel93
sharbel93 / How to solve this problem of "! [rejected] master -> master (fetch first)"
Created January 19, 2019 10:09
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