如何将Google Code上的SVN repo迁移到GitHub上的git repo

时间:2013-11-21 17:47:00

标签: git svn github

我很难将从code.google上托管的SVN存储库切换到github上的git repo。具体做法是:

  1. 如何在保留修订历史记录的同时将code.google上的代码从SVN更改为GIT?
  2. 如何在保留修订历史记录的同时将code.google从SVN更改为GIT?
  3. 如何将我的GIT存储库从code.google移动到GitHub?
  4. 如何将两个存储库保持同步,同时仍然使用GitHub作为主要存储库?

2 个答案:

答案 0 :(得分:9)

变量:

  • $ project 是您的项目名称
  • $ username 是您在github上的用户名

这假设您的 $ project 名称在github上与在code.google上的名称相同,并且您已经初始化了github存储库。

此外,如果您的code.google存储库已经是GIT,则可以跳到第4步。

  1. 将项目从SVN转换为GIT。这就像进入Administration-> Source选项卡并将其从SVN更改为GIT一样简单。顺便说一句,在你这样做之后,svn仍然可用;所以不要担心完全代码丢失。

  2. 将源码从code.google SVN转换为code.google GIT(保留历史记录)

    git svn clone --stdlayout https://$project.googlecode.com/svn $project
    cd $project
    git remote add googlecode https://code.google.com/p/$project
    git push --all googlecode
    cd ..
    
  3. 将wiki从谷歌SVN转换为谷歌GIT(保留历史记录)

    git svn clone https://$project.googlecode.com/svn/wiki $project.wiki
    cd $project.wiki/
    git remote add googlecode https://code.google.com/p/$project.wiki
    git push --all googlecode
    cd ..
    
  4. 从github获取新的git repo

    mkdir github
    cd github/
    git clone https://code.google.com/p/$project.git
    cd $project/
    
  5. 从code.google GIT获取源代码到本地github clone

    git remote set-url origin https://github.com/$username/$project.git
    git pull
    
  6. 将源从本地克隆推送到github

    git push origin master
    
  7. 告诉您的本地克隆将提交推送到github和code.google

    git remote set-url --add origin https://$project.googlecode.com/git
    
  8. 测试提交github和code.google

    的提交
    touch test.txt
    git add test.txt
    git commit -m "Testing repo replication" test.txt
    git push
    
  9. 现在,每当您对本地克隆进行更改时,它都会将这些更改推送到两个存储库。

    注意:如果您在其他位置(如另一台计算机)再次克隆,则必须再次重复步骤6。

答案 1 :(得分:0)

Google Code上现在有一个导出功能 - 转到您项目的Google代码页,即code.google.com/p/yourproject,然后您会看到一个按钮'导出到GitHub',这将在几个步骤(注意:您需要使用您的GitHub帐户进行授权)。

请注意,您可以为任何项目执行此操作,而不仅仅是您自己的项目。