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版本發生的,最新的版本需要添加–allow-unrelated-histories
假如我們的源是origin,分支是master,那么我們 需要這樣寫git pull origin master –allow-unrelated-histories需要知道,我們的源可以是本地的路徑
總結
以上是生活随笔為你收集整理的git无法pull仓库refusing to merge unrelated histories的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: git提交代码到github时出现eve
- 下一篇: Git和Github简单教程