有时候我们可能会需要 push 到多个远程仓库,比如同时链接多个代码托管平台的账号,那么可以参考本文所述的方法配置。
保险起见在操作之前请先做好备份工作,毕竟数据无价。
方法 1 - 添加多个远程仓库
比如要链接两个 Github 仓库,分别是 github1 和 github2,那么:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
| git remote add github1 https://github.com/username/github1.git
git remote add github2 https://github.com/username/github2.git
git push github1 master
git push github2 master
git pull github1 master
git pull github2 master
|
方法 2 - 添加同名多个远程仓库
1 2 3 4 5 6 7 8 9 10 11 12 13 14
| git remote add origin https://github.com/username/github1.git
git remote set-url --add --push origin https://github.com/username/github1.git git remote set-url --add --push origin https://github.com/username/github2.git
git remote -v
git push origin master
|
方法 3 - 直接修改.git/config 文件
用文本编辑器打开本地仓库的 .git/config 文件,然后修改其中的远程仓库配置
1 2 3 4 5 6
| [remote "origin"] url = https://github.com/username/github1.git fetch = +refs/heads/*:refs/remotes/github/* pushurl = https://github.com/username/github1.git pushurl = https://github.com/username/github2.git
|
然后直接使用
即可提交至所有版本库