-2

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

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

提前致谢!

4

1 回答 1

1

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
于 2018-01-29T14:26:52.703 回答