我想了解無關歷史的合併。 Git'merge'命令有一個選項「--allow-unmatched history」來合併不相關的歷史記錄。我在這裏錯過了一些澄清。 GIT中的根文件夾稱爲「項目」。項目包含許多存儲庫。每個回購可能有幾個分支。我們可以合併GIT中的2個不同項目的分支
考慮到這一切。我有兩個'項目'(a,b)。在項目'a'中,我有一個叫'arepo'的回購。 'arepo'有一個分支'abranch'。同樣,還有項目'b'。項目'b'有一個叫'brepo'的回購。 'brepo'有一個叫'bbranch'的分支。
在這種情況下,我們可以合併「abranch」和「bbranch」使用Git的「允許無關-歷史」選項合併?
在此先感謝。
也許[this](https://stackoverflow.com/questions/37937984/git-refusing-to-merge-unrelated-histories)或[this](https://stackoverflow.com/questions/45272492/git -refusing-to-merge-unrelated-historories-what-is-unrelated-history)將會有所幫助 – Soenhay