Gitee 的开源项目之前就被监管过,很多项目直接关闭无法访问了,今天我们来看一下如何让自己的 git 仓库可以同步到多个平台,以 GitHub 和 Gitee 为例。首先,在 GitHub 和 Gitee 上面同时建立两个仓库。
在本地初始化一个 Git本地分支
git init
从 github 或者 gitee 上将仓库拉取到本地。
git pull https:xxxx
如果使用一些套壳的软件,比如 TortoiseGit,可以使用直接 clone 到本地也行。
进入到 .git 目录下,修改 config 文件,在 remote 路径中增加一条远程路径。
[core]
repositoryformatversion = 0
filemode = false
bare = false
logallrefupdates = true
ignorecase = true
[remote "origin"]
url = https://gitee.com/ee-nav/xgtest.git
url= https://github.com/ee-nav/xgtest.git
fetch = +refs/heads/*:refs/remotes/origin/*
[branch "master"]
remote = origin
merge = refs/heads/master
如果是使用 TortoiseGit ,那就在仓库目录下右键菜单中选择 Settings,编辑 Local.git/config。
注意:为了避免冲突,所以最好是从空仓库开始。如果是为了仓库的转移,也可以将 remote 的远程仓库链接直接替换,或者使用以下更简单的方法。在 gitee 中,可以使用直接从链接导入的形式进行仓库转移。
阅读全文