一聚教程网:一个值得你收藏的教程网站

热门教程

linux中Git提交到多个远程仓库

时间:2022-06-30 19:15:58 编辑:袖梨 来源:一聚教程网

第一步:添加远程仓库

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

热门栏目