Some time ago we have created a branch from our original application. The original application is live. We have merged the trunk project to the branch and we will soon go live with this new/extended application. When we want to create a branch from this branch we receive a message that this is not supported.
Since the original application will be obsolete anyway, we would like to 'upgrade' our current branch to trunk. Is this possible and if so, how?
We are currently using 2018.3.
Solved
Changing a Branch-project to Trunk-project
Best answer by Anne Buit
Hi Hugo,
That does complicate things a bit.
You can run the following query on the 2018.3 Software Factory database to change the branch into a project that can be used as a trunk.
View originalThat does complicate things a bit.
You can run the following query on the 2018.3 Software Factory database to change the branch into a project that can be used as a trunk.
code:
update project
set branch_project = 0,
trunk_project_id = null,
trunk_base_project_vrs_id = null
where project_id = 'NAME_OF_BRANCH_PROJECT'
This topic has been closed for comments
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.