【git】给本地代码添加多个远程git仓库
git remote add other https://xxxxxxxxx.git
cd到目标项目目录,先git remote -v
查看当前仓库有哪些远程仓库,然后使用git remote add other https://xxxxxxxxx
,然后再git remote -v
查看一下,就可以看到远程仓库地址多可一个叫other的仓库。
第一种方法想要push到多个仓库的时候,要执行两次push命令:
git push -u origin master
git push -u other master
git remote rm other 删除other远程仓库地址
git remote set-url –add other https://xxxxxxxxxx.git
第二种方法使用git remote set-url --add other https://xxxxxxxxxx.git
,在当前本地连接的远程仓库下新增仓库地址。只需要执行一次push就可以同时上传到两个仓库中。