为了防止github被墙,最好在国内的托管商做一个备份,这就需要同时提交到多个远端仓库,例如一个open source项目同时要提交csdn和github,url分别是
- git@github.com:lutaf/auto-complete.git
- git@code.csdn.net:lutaf/autocomplete.git
方法很简单,一共分4步
第一步:添加remote信息
git remote gh git@github.com:lutaf/auto-complete.git
git remote cn git@code.csdn.net:lutaf/autocomplete.git
第二步:为每个仓库建立单独的分支
git checkout -b github
...
git checkout -b csdn
第三步:在各自分支上完成开发,并提交
第四步:把本地分支推送到远端仓库的master分支
git checkout csdn
git push cn csdn:master
第四步很关键,一定是要推送到远端仓库的master分支
转载请注明:爱开源 » git项目同时支持多个远端仓库