使用git pull提示refusing to merge unrelated histories

weixin_34128411發表於2018-11-26

這個問題出現在將本地專案改為git專案的過程中

將本地專案改為git專案,在當前專案根目錄下執行

git init

線上建立git專案,獲取到ssh地址或是http地址,然後指定本地專案的git地址為建立專案的地址

git remote add xxxx.git

嘗試提交程式碼,初次提交需要先pull,這是就出現了標題的報錯 fatal: refusing to merge unrelated histories,執行

git pull --allow-unrelated-histories

這樣即可pull成功

unreleated histories

looking for the meaning

相關文章