关于git同时提交到2个仓库gitee github

Posted zjoe80

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了关于git同时提交到2个仓库gitee github相关的知识,希望对你有一定的参考价值。

一、进入.git文件夹

技术图片

 

二、编辑config

原文件:

技术图片

 

 修改后:

技术图片

 

 代码如下:

[core]
   repositoryformatversion = 0
   filemode = false
   bare = false
   logallrefupdates = true
   symlinks = false
   ignorecase = true
[submodule]
   active = .
[remote "origin"]
   url = https://gitee.com/stylesmile/snow.git
   fetch = +refs/heads/*:refs/remotes/origin/*
   url = https://github.com/stylesmile/snow.git
   
[branch "master"]
   remote = origin
   merge = refs/heads/master
   
[remote "github"]
    url = https://github.com/stylesmile/snow.git
    fetch = +refs/heads/*:refs/remotes/gitee/*
    tagopt = --no-tags

再次push ,就会同时提交到2个仓库。

以上是关于关于git同时提交到2个仓库gitee github的主要内容,如果未能解决你的问题,请参考以下文章

Git同时提交到多个远程仓库

Git提交到多个远程仓库

使用Git GUI工具 上传本地仓库到 gitee码云仓库

git 提交文件到gitee

IDEA提交作业(gitee)

如何利用idea提交本地代码到git远程仓库,史上最详细教程,建议收藏!