tags:

views:

37

answers:

3

Hello If we have some branch B1 . Is there way to create from it branch B2 so that commits will be synchronizing , i.e. commit into branch B1 causes also updating in B2 ?

Thanks

A: 

No. You have to merge the changes yourself.

Nikola Smiljanić
A: 

Of course, you can use Subversion post-commit hooks.

squadette
I don't think it's good solution; you can get more troubles with it than benefits
Pmod
One word: conflicts.
Piskvor
As far as I understood the task, B2 branch is a simple mirror of B1.Otherwise, of course, conflicts ensue.
squadette
+1  A: 

No, you can't. You have to merge changes manually. Take a look at svnmerge. This can help to automatize this process.link

Pmod