Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How, if it is possible, would you use VisualSVN to retrieve source code from an open source project (such as on codeplex), but also have your own SVN repository locally such that you could keep a revision history for your own customizations, but still once and a while check the codeplex project for changes that I might want to apply to my code. This particular project (on codeplex), I only have read-only access so I would never be checking code back up to to codeplex.

I am relatively new to VisualSVN, having only ever used Visual Source Safe in the past.

Is this type of setup even possible with the tools I have, and if not would another tool work? A few pointers would be a great help.

share|improve this question

1 Answer

up vote 7 down vote accepted

The SVN Book has a more thorough explanation than I could possibly give here, but the concept you're describing is vendor branches.

I'm not familiar with VisualSVN specifically, so I can't give you any step-by-step howto info; Perhaps someone else will be able to.

share|improve this answer
+1: oh yeah -- vendor branches are a wonder – Kornel Kisielewicz Jan 30 '10 at 1:43
1  
The great thing about "vendor branches" is that they're not a "thing" in themselves, but rather a general technique that can be applied in any source control system. – Greg Hewgill Jan 30 '10 at 2:14
Thanks...that is all I needed, a keyword to use for further reading. Hard to google something if you don't know what it is called. – E.J. Brennan Jan 30 '10 at 2:46

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.