我很难将从code.google上托管的SVN存储库切换到github上的git repo。具体做法是:
答案 0 :(得分:9)
变量:
这假设您的 $ project 名称在github上与在code.google上的名称相同,并且您已经初始化了github存储库。
此外,如果您的code.google存储库已经是GIT,则可以跳到第4步。
将项目从SVN转换为GIT。这就像进入Administration-> Source选项卡并将其从SVN更改为GIT一样简单。顺便说一句,在你这样做之后,svn仍然可用;所以不要担心完全代码丢失。
将源码从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 ..
将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 ..
从github获取新的git repo
mkdir github
cd github/
git clone https://code.google.com/p/$project.git
cd $project/
从code.google GIT获取源代码到本地github clone
git remote set-url origin https://github.com/$username/$project.git
git pull
将源从本地克隆推送到github
git push origin master
告诉您的本地克隆将提交推送到github和code.google
git remote set-url --add origin https://$project.googlecode.com/git
测试提交github和code.google
的提交touch test.txt
git add test.txt
git commit -m "Testing repo replication" test.txt
git push
现在,每当您对本地克隆进行更改时,它都会将这些更改推送到两个存储库。
注意:如果您在其他位置(如另一台计算机)再次克隆,则必须再次重复步骤6。
答案 1 :(得分:0)
Google Code上现在有一个导出功能 - 转到您项目的Google代码页,即code.google.com/p/yourproject
,然后您会看到一个按钮'导出到GitHub',这将在几个步骤(注意:您需要使用您的GitHub帐户进行授权)。
请注意,您可以为任何项目执行此操作,而不仅仅是您自己的项目。