這篇文章主要介紹了詳解git無法pull倉庫refusing to merge unrelated histories的相關資料,需要的朋友可以參考下
#詳解git無法pull倉庫refusing to merge unrelated histories
本文講的是把Git在最新2.9.2,合併pull兩個不同的項目,出現的問題如何去解決
fatal: refusing to merge unrelated histories
我在Github新建一個倉庫,寫了License,然後把本地一個寫了很久倉庫上傳。
先pull,因為兩個倉庫不同,發現refusing to merge unrelated histories,無法pull
因為他們是兩個不同的項目,要把兩個不同的專案合併,git需要加入一句程式碼,在git pull,這句程式碼是在git 2.9.2版本發生的,最新的版本需要加入--all ow-unrelated-histories
假如我們的源是origin,分支是master,那麼我們需要這樣寫git pull origin master ----allow-unrelated-histories需要知道,我們的來源可以是本地的路徑
以上是合併pull兩個不同的項目的實例的詳細內容。更多資訊請關注PHP中文網其他相關文章!