Git一个本地仓库同时推送到多个远程仓库

Posted 谷仁儿的盒子

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Git一个本地仓库同时推送到多个远程仓库相关的知识,希望对你有一定的参考价值。

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

 

以上是关于Git一个本地仓库同时推送到多个远程仓库的主要内容,如果未能解决你的问题,请参考以下文章

在自己的服务器上搭建git仓库服务器(本地推送到远程仓库远程仓库推送到本地)

Git推送到多个远程仓库

git能直接把本地仓库推送到远程仓库吗?

本地项目推送到git远程仓库

本地项目推送到git远程仓库

如何将本地代码提交到多个远程仓库