git svn - git-svn vcs switch: where are my branches? -
i converted large svn repository git repository with
git svn init svn/server/project --no-metadata git svn fetch
this took better part of 2 days finish.
this repo should have quite few branches when "git branch" nothing master. listed under branches directory, shouldn't see them "git branch" well?
"git branch -a" shows master , remotes/git-svn.
was --no-metadata switch did this?
when initializing git repository need use either --trunk
, --branches
, --tags
options or --stdlayout
option git svn init
in order tell path directories trunk
, branches
, tags
directories in subversion repository.
see manual page git-svn additional details.
Comments
Post a Comment