我继承了一个SVN存储库,其结构如下:
Master
-TheCodeRepo // Application code repo in here
Branches
-CoderGuy1
--Ticket123
---TheCodeRepo // Application code repo in here
-CoderGuy2
--Ticket555
---TheCodeRepo // Application code repo in here
-CoderGuy3
--Ticket444
---TheCodeRepo // Application code repo in here
我需要将所有这些“分支”合并到主存储库中。它完全一团糟。这甚至可能吗?或者我是否必须使用一些diff GUI并手动合并所有内容?
答案 0 :(得分:0)
它像我一样使用功能分支策略,每个开发人员都有一些额外的目录。如果您查看documentation in the SVN Red Book,您会看到以下模式:
新策略当然应该避免大多数错误的功能分支,只需将它们修复到发布分支(您应该有一个),或者直接在主服务器上修改(通常称为主干)。