Git 怎么添加多个远程仓库

如题所述

例如我有下面两个仓库:
git@bitbucket.net:fancive/project.gitgit@github.com:fancive/curl.git12

在项目路径下打开Git Bash
添加一个remote,这里是origin,也可以是别的名字
$ git remote add origin git@bitbucket.net:fancive/project.git$ git remote set-url --add origin git@github.com:fancive/curl.git123

如果有多个,按照上面这一个命令进行添加.
提交的时候输入:
git push origin --all1

这样就会一次提交到多个库了,上面命令输出如下:
温馨提示:内容为网友见解,仅供参考
无其他回答
相似回答