一个项目设置两个git地址,并提交到两个git地址上

1.先添加项目另一个远程地址

git remote add origin2 url

url指的是远程地址,例如: https://github.com/apache/XXXX.git origin2是指定一个名称

2.先拉取该地址上的数据

git pull origin2 master

如果提示

: refusing to merge unrelated histories

说明有冲突 如果一定要pull的话可以使用,空项目的话可能是readme.md冲突了

 git pull origin2 master --allow-unrelated-histories 然后解决冲突之后提交就ok啦

3.提交数据到该远程地址

git push origin2 master

你可能感兴趣的:(一个项目设置两个git地址,并提交到两个git地址上)