SVN 到 git 迁移:如何将分支从 SVN 添加到迁移的 git (Gerrit)

SVN to git migration: How to add branches from SVN to migrated git (Gerrit)

我已经将 SVN 存储库迁移到 git 并将其添加到 Gerrit 项目中。

我的问题是 SVN 存储库有多个分支。如何迁移分支并将它们添加到现有的 Gerrit 项目中?

提前致谢!

http://blog.jessitron.com/2013/08/converting-from-svn-to-git.html

git for-each-ref --format="%(refname:short)" refs/remotes/svn |
   sed 's#svn/##' | grep -v '^tags' |
      while read aBranch; do git branch $aBranch svn/$aBranch || exit 1; done