How to move a branch in SVN in the trunk?

How can I move the SVN branch to the trunk?

The problem that I am facing is that if I make a move command in SVN (on the command line or inside Eclipse), I can move the branch folder to the trunk, resulting in this folder in the trunk. But I want to have all the contents of this branch in the trunk.

eg.

/branch/mybranch/project1,project2,project3

should be

/trunk/project1,project2,project3

but not

/trunk/mybranch/project1,project2,project3

Of course, with project1, project2, project3 as 3 different projects ...

How can I do that? Does the tortoise help? Or is this only possible when moving each project on its own?

+3
source share
1 answer

(/branch/oldtrunk), //mybranch /trunk. ( ?)

:

svn mv http://path/to/repo/trunk http://path/to/repo/branch/oldtrunk
svn mv http://path/to/repo/branch/mybranch http://path/to/repo/trunk

. . , .

+5

Source: https://habr.com/ru/post/1778730/


All Articles