标签:
为了防止github被墙,最好在国内的托管商做一个备份,这就需要同时提交到多个远端仓库,例如一个open source项目同时要提交csdn和github,url分别是
方法很简单,一共分4步
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
第三步:在各自分支上完成开发,并提交
git checkout csdn
git push cn csdn:master
第四步很关键,一定是要推送到远端仓库的master分支
标签:
原文地址:http://www.cnblogs.com/x113/p/4735425.html