场景
在使用git时,会出现将一个仓库同事push到多个托管远端,如防止git托管不稳定,起备份作用
解决方法
假设想要增加3个远程库地址,分别为 :
https://git.oschina.net/shede333/swioslibary.git
https://git.oschina.net/shede333/swscrollbar.git
https://github.com/shede333/CoreAnimationTestSW.git
首先,先增加第一个地址 git remote add origin https://git.oschina.net/shede333/swioslibary.git
然后增加第二个地址 git remote set-url --add origin https://git.oschina.net/shede333/swscrollbar.git
增加第三个地址 git remote set-url --add origin https://github.com/shede333/CoreAnimationTestSW.git
….依次类推
这样就完成了添加多个地址到origin库中了(第一个为fetch和push,后面的是push远程路径),
以后只要使用git push origin master
就可以一次性push到3各库里面了(使用git push也可)
网友评论