赞
踩
github
新建一个仓库,在本地建一个项目,先关联,执行代码:
git remote add origin https://github.com/xxx/myApp.git
再向远程仓库提交前,先拉取远程分支,报错:fatal: refusing to merge unrelated histories
报错原因:远端仓库认为这个本地库跟自己不相干(master库不一致), 所以告知无法合并;
解决方法:
git pull origin master --allow-unrelated-histories
--allow-unrelated-histories
是两个分支进行强行合并意思
再次执行以下代码:
git pull origin master
git push -u origin master
方法2:从远端仓库拉下来代码 , 要新建的项目放在从远程拉下的文件内, 然后执行add、commit
后再提交到远程
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。