查看Git仓库
首先查看Git代码绑定了哪些Git仓库
git remote -v
如果当前代码没有绑定远端Git仓库,需要先确定Pull会从哪个仓库Pull,之后运行如下命令
git remote add orgin https://gitee.com/enilu/material-admin.git
绑定多个远端仓库
之后再绑定另外一个远端仓库,使Push的时候能同时Push两个仓库
git remote set-url --add origin https://github.com/enilu/material-admin.git
这个时候查看远端仓库信息会有两个Push的远程仓库文章来源:https://www.toymoban.com/news/detail-517704.html
$ git remote -v
orgin https://github.com/MeterosBehind/MyJava.git (fetch)
orgin https://github.com/MeterosBehind/MyJava.git (push)
orgin https://gitee.com/youngforever1728/my-java.git (push)
之后再进行add commit push即可,会将代码同时Push到两个远程仓库中文章来源地址https://www.toymoban.com/news/detail-517704.html
到了这里,关于Git一份代码同时提交两个Git仓库的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!