John
John

Reputation: 1594

Keep branches in separate SVN repositories up to date

I have two separate SVN repositories both with trunk, branches, and tags directories.

Within the branches directory, I have several SW project branches which exist and need to be up to date with each other in both of the repositories;

for example branch prj1.br exists in Repo-A and Repo-B:

Repo-A/branches/prj1.br

Repo-B/branches/prj1.br

Using Subversion is there a proper way to keep these branches in different repositories up to date with each other via SVN commands which could be scripted?

Upvotes: 0

Views: 31

Answers (1)

bahrep
bahrep

Reputation: 30672

I guess that you should use vendor branches, but I'm not sure just because it's unclear how branches in Repo-A and Repo-B are related.

Here is the current vendor branches management Python 3.3+ script http://svn.apache.org/repos/asf/subversion/trunk/tools/client-side/svn-vendor.py

Upvotes: 0

Related Questions