SVN creating trunk directory on existing repository

前端 未结 6 1561
暗喜
暗喜 2020-12-23 21:43

I am working a project that does not have a trunk / branches / tags directory structure - ie. everything is in the root of the svn repo.

I would like to create a tru

6条回答
  •  长情又很酷
    2020-12-23 21:54

    Old post but I too had the same issue with all my repos were in the root and not in trunks. This presented a problem when trying a simple git svn clone command. After hours of trial and error, it was a simple:

    git svn clone --username byname http://www.MySVNserver.com:81/repos/project1 --no-metadata --trunk=.

提交回复
热议问题