第一步:添加远程仓库
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