Reputation: 2801
I was wondering what steps people generally take when it comes to merging a live (continually updated) SVN respository with an offline one (updated less often), as an example, take my scenario:
A while ago I downloaded the BugTracker.NET system when it was at version 3.2.3. I've subsequently make some enhancements to the code for our business. We develop these under source control using SVN. Meanwhile of course, the core BugTracker.NET code has continued to be developed. I basically want all of the updates from the BugTracker.NET SourceForge repository (which I believe is also SVN) merged across into my own in-house repository.
What, in your opinion, is the best way to go about doing this?
Thanks,
Andy
Upvotes: 2
Views: 342
Reputation: 29735
first, subversion is a suboptimal choice for such a workflow, try a distributed version control system like GIT, Bazaar, etc
if you have to stay on subversion, make use of the vendor-branch-pattern:
Upvotes: 3