第一步:添加远程仓库git remote add origin 第一个仓库地址 //origin只是个别名哦
git remote add osc 第二个仓库地址 //osc也是个别名哦第二步:创建分支git checkout -b master
git checkout -b osc第三步:提交代码:分别切换分支提交git chekcout master
git push origin master
//=========================
git checkout osc
git push osc master