在码云申请了账号,网页新建项目后,在Xcode新建 git remote 后
Pull 提示 :
refusing to merge unrelated histories
解决方法:
git pull --allow-unrelated-histories
意思:
allow merging unrelated histories
原因:
在网页新建项目后,本地项目和托管项目是完全两个不通的项目
refusing to merge unrelated histories
git pull --allow-unrelated-histories
allow merging unrelated histories
在网页新建项目后,本地项目和托管项目是完全两个不通的项目