user770174
user770174

Reputation: 33

SVN two different repos

We have our own repository and our client has their own, is there a way to somehow sync them but at the same time keep them separated?

Upvotes: 1

Views: 75

Answers (2)

Greg Finzer
Greg Finzer

Reputation: 7074

If you have two separate directories you could use Goodsync to synchronize the files periodically.

http://www.goodsync.com/

Upvotes: 0

Edwin Buck
Edwin Buck

Reputation: 70949

Look into SVN externals, which permits you to checking a version of another repo into a subdirectory of your repo. This maintains version control over the binding of your particular version to the specific checkin / tag / branch / head of the external repository.

It might be the solution, or at least a tool to build your solution.

Upvotes: 1

Related Questions