ผมมีปัญหาเดียวกัน. ปัญหาคือรีโมตมีบางสิ่งที่ป้องกันสิ่งนี้
ฉันสร้างที่เก็บข้อมูลในเครื่องครั้งแรก ฉันเพิ่มLICENSE
และREADME.md
ไฟล์ลงในเครื่องและมุ่งมั่น
จากนั้นฉันต้องการที่เก็บรีโมตดังนั้นฉันจึงสร้างที่เก็บบน GitHub ที่นี่ฉันทำผิดพลาดในการตรวจสอบ "เริ่มต้นพื้นที่เก็บข้อมูลนี้ด้วย README"ซึ่งสร้าง README.md ในระยะไกลด้วย
ดังนั้นเมื่อฉันวิ่ง
git push --set-upstream origin master
ฉันได้:
error: failed to push some refs to 'https://github.com/lokeshub/myTODs.git'
hint: Updates were rejected because the tip of your current branch is behind
hint: its remote counterpart. Integrate the remote changes
(e.g. hint: 'git pull ...') before pushing again.
hint: See the 'Note about fast-forwards' in 'git push --help' for details.
ตอนนี้เพื่อเอาชนะสิ่งนี้ที่ฉันทำ
git pull origin master
ซึ่งส่งผลให้เกิดข้อผิดพลาดด้านล่าง:
From https://github.com/lokeshub/myTODs
branch master -> FETCH_HEAD
fatal: refusing to merge unrelated histories**
ฉันเหนื่อย:
git pull origin master --allow-unrelated-histories
ผลลัพธ์:
From https://github.com/lokeshub/myTODs
* branch master -> FETCH_HEAD
Auto-merging README.md
CONFLICT (add/add): Merge conflict in README.md
Automatic merge failed;
fix conflicts and then commit the result.
สารละลาย:
ฉันลบที่เก็บข้อมูลระยะไกลออกและสร้างใหม่ (ฉันคิดว่ามีเพียงการลบไฟล์เท่านั้นที่README
สามารถใช้งานได้) และหลังจากนั้นรายการด้านล่างใช้งานได้:
git remote rm origin
git remote add origin https://github.com/lokeshub/myTODOs.git
git push --set-upstream origin master
git-rebase
สถานการณ์ในขณะที่คำตอบให้ธงสำหรับgit-merge