Git-svn creates many branches added with @rev

Possible duplicate:
git-svn clone | false branches

I converted the SVN repo to git with git-svn.

Everything seems fine, but there are many branches with a name branch-name@rev(i.e. remotes/release-1.0@10920) that are not in SVN.

Does anyone know where they came from?

+3
source share
2 answers

This may not be the only time those kinds of refs appear, but the one place where they appear is when the whole project has been moved (renamed) to svn.

+1
source

I also ran into this problem. Remember to use the parameter -sto tell git that your svn has a certain standard layout, and everything should be fine.

0
source

All Articles