我想把我的svn repo转换为git one来做到这一点我做了以下事情:
1 /创建authors.txt文件 2 /使用此命令:
git svn clone [SVN repo URL] --no-metadata -A authors-transform.txt --stdlayout ~/temp
一切顺利,但现在我的git repo在git扩展名中看起来像这样:
如何删除bre / trunk和trunk green thingy? 我还想删除bre / cloud1和cloud1。
不幸的是,上下文选项“删除此分支”将不会显示。
感谢。
答案 0 :(得分:1)
我最近使用以下步骤将svn repo转换为git
mkdir my_project_svn
cd my_project_svn
git svn init http://svn.blah.com/blah/trunk/ --no-metadata
git config svn.authorsfile ../authors.txt
git svn fetch
一切都像魅力一样。您可以阅读有关流程here
的更多信息