vote up 1 vote down star

I am wondering if i should delete the merged branch.

flag

5 Answers

vote up 3 vote down check

If you merge a branch into trunk using "svn merge --reintegrate", you are recommended to delete the branch. If you want to do further development in that branch, you should "re-branch", effectively create a new branch with the same name, but rooted at the same revision as you merged the branch into trunk.

Read more about svn merge --reintegrate.

link|flag
but if i delete the branch, how can i know when the trunk is merged, as subsvn doesn't show the merge path. – Benny Oct 9 at 7:01
2  
You will have a commit message saying something like "reintegrated branch foo into trunk", and trunk will have svn:mergeinfo properties showing what you have merged. – JesperE Oct 9 at 7:06
@JesperE, Thanks for the info. really helpful. it's a pitty the Revision Graph doesn't draw the merge path. – Benny Oct 9 at 15:34
Yup, Subversion doesn't do merging very well. – JesperE Oct 9 at 19:13
vote up 0 vote down

No, if you don't have disk space problem. Who knows what will be needed tomorrow.

link|flag
Completely agree. – Jonathan Oct 9 at 6:34
3  
What does disk space have to do with anything? Deleting a branch does not affect the size of the repository. – JesperE Oct 9 at 6:34
That's interesting, I didn't know. – grigy Oct 9 at 7:19
vote up 2 vote down

It depends on what you created the branch for in the first place. A branch is usually used for maintaining a released or soon-to-be-released version of software, so in general, no, you would not delete it. Even if you do, it is still there taking up space (its just no longer visible in the current version), so unless you have a great need to delete it, I would keep it around.

link|flag
vote up 1 vote down

I'd keep it. The SVN tree gives you a lot of history about your source code repository.

link|flag
vote up 0 vote down

No,

if the moths are showing that your product was more stabil in the branch than in trunk, you may be want to start comparing both or starting the merge again.

Also customers could want to have additional features depending on the branch you had, because they do not want to risk that the applicatzion brakes, because of new code.

You should always have the possibility to revert changes. Thats the idear of branches, trunk and svn.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.