将GIT仓库从Github导入到Git@OSC

99封情书 提交于 2020-01-08 20:01:24

【推荐】2019 Java 开发者跳槽指南.pdf(吐血整理) >>>

看了@王振威的 “如何导入外部Git仓库到中国源代码托管平台(Git@OSC)”一文, 感觉操作比较麻烦。 在此把自己平台导入Github的方法写下来,以供参考。

在这里以http://github.com/puras/moobo.git为例。

1、在git@osc上创建一个仓库,最好是同github同名的,在这里叫moobo, 同样,不要勾选使用Readme初始化项目,不要选择项目的授权协议和.gitignore 文件 生成一个空的项目

2、从github上克隆源码: git clone http://github.com/puras/moobo.git

3、进入moobo/.git目录,打开config文件,初始内容如下:

[core]
        repositoryformatversion = 0
        filemode = true
        bare = false
        logallrefupdates = true
[remote "origin"]
        fetch = +refs/heads/*:refs/remotes/origin/*
        url = http://github.com/puras/moobo.git
[branch "master"]
        remote = origin
        merge = refs/heads/master

在[remote "origin"]下增加一行,内容为: url = http://git.oschina.net/puras/moobo.git

最终内容为:

[core]
        repositoryformatversion = 0
        filemode = true
        bare = false
        logallrefupdates = true
[remote "origin"]
        fetch = +refs/heads/*:refs/remotes/origin/*
        url = http://github.com/puras/moobo.git
        url = http://git.oschina.net/puras/moobo.git
[branch "master"]
        remote = origin
        merge = refs/heads/master

保存文件

4、回到moobo目录,执行push命令,便可把代码更新到git@osc上了。 注意,第一次提交需要加参数,命令如下:

git push -u origin master

注:此时代码可以提交到Github和git@osc,如果不想两个都提交,去掉config中的url一行便可

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!