git 添加多个远程仓库

参考

https://www.cnblogs.com/lwlblog/p/12634455.html

补充:

添加新的远程仓库:
git remote add coding git@e.coding.net:xxx/project/xxx.git
将本地的所有分支推送到新的远程仓库:
git push --all coding


懂得,原来世界如此简单!

原文地址:https://www.cnblogs.com/qianxunman/p/15250648.html