If we have some branch, B1, is there a way to create branch B2 from it so that commits will be synchronizing? I.e., committing into branch B1 also causes updating 开发者_C百科in B2.
No, you can't. You have to merge changes manually. Take a look at svnmerge. This can help to automatize this process.link
Of course, you can use Subversion post-commit hooks.
No. You have to merge the changes yourself.
精彩评论