首页 > 其他 > 详细

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

时间:2020-07-01 23:47:40      阅读:126      评论:0      收藏:0      [点我收藏+]

一、进入.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

原文:https://www.cnblogs.com/ZJOE80/p/13222283.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!