首先我在现有的项目文件夹新建了一个本地仓库,然后在Coding.net新建了一个私有项目,准备把本地项目推到Coding。
- 首先先
git pull [SSH]
到本地的仓库,但是会出现错误refusing to merge unrelated histories
意思就是,这两个合并的仓库提交历史不一致,所以拒绝合并。 - 运行这个命令才能合并
git pull [SSH] master --allow-unrelated-histories
这句命令的意思是,无视提交历史记录把Coding的master主分支拉下来合并,可能会有一些冲突,解决下就可以了。
部分内容转自:foo__hack