看了@王振威的 「如何導入外部Git倉庫到中國源代碼託管平臺(Git@OSC)」一文, 感受操做比較麻煩。 在此把本身平臺導入Github的方法寫下來,以供參考。git
在這裏以http://github.com/puras/moobo.git爲例。github
一、在git@osc上建立一個倉庫,最好是同github同名的,在這裏叫moobo, 一樣,不要勾選使用Readme初始化項目,不要選擇項目的受權協議和.gitignore 文件 生成一個空的項目fetch
二、從github上克隆源碼: git clone http://github.com/puras/moobo.giturl
三、進入moobo/.git目錄,打開config文件,初始內容以下:.net
[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.gitcode
最終內容爲:orm
[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
保存文件rem
四、回到moobo目錄,執行push命令,即可把代碼更新到git@osc上了。 注意,第一次提交須要加參數,命令以下:get
git push -u origin master
注:此時代碼能夠提交到Github和git@osc,若是不想兩個都提交,去掉config中的url一行即可源碼