ตอนนี้ฉันค่อนข้างใหม่ที่git
ยังใช้มันเพื่อจัดการโค้ดของเราในสภาพแวดล้อมแบบทีม ฉันมีปัญหาในการเปลี่ยนใหม่และแก้ไขโดยใช้
git checkout --ours filename.txt
git add filename.txt
git rebase --continue
ตอนนี้ฉันต้องการที่จะผลักดันการเปลี่ยนแปลงของฉันและเรียกใช้คำสั่งต่อไปนี้
$ git push origin feature/my_feature_branch
ทำให้ฉันมีข้อผิดพลาดต่อไปนี้:
To ssh://git@coderepo.com:7999/repo/myproject.git
! [rejected] feature/my_feature_branch -> feature/my_feature_branch (non-fast-forward)
error: failed to push some refs to 'ssh://git@coderepo.com:7999/repo/myproject.git'
hint: Updates were rejected because the tip of your current branch is behind
hint: its remote counterpart. Merge the remote changes (e.g. 'git pull')
hint: before pushing again.
hint: See the 'Note about fast-forwards' in 'git push --help' for details.
ฉันจะทำอย่างไรเพื่อกำจัดข้อผิดพลาด
PS: ฉันหลีกเลี่ยงที่จะใช้--force
ตัวเลือกนี้ให้มากที่สุด