我已使用以下命令将non standardized SVN repository
迁移到GIT repository
。
git svn clone --trunk=https://svnpath/project --branches=branches/*/*/* --tags=tags/* --authors-file=authors.txt https://svnpath/project tempProject.
我有多个基于trunk创建的分支。所以我也需要那些分支提交历史记录。
使用上述命令,我成功迁移Trunk,但无法获取所有分支及其提交历史记录。
那么,如何在将svn迁移到git之后获取所有分支及其提交历史记录?