SVN creating trunk directory on existing repository

前端 未结 6 1554
暗喜
暗喜 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

    Here give the way of using svn+ssh method to create the trunk folder in the svn root in unix terminal. "projectname" is the root "Identifier" when you create the project in svn:

    svn mkdir svn+ssh://username@host/projectname/trunk -m "Create the trunk folder"
    

提交回复
热议问题