up vote 13 down vote favorite
7
share [g+] share [fb]

I'm looking for a succinct and well-written tutorial on using svn:externals.

I already know how to use them in a basic way myself, but I want a good article that I can link to when answering questions like this one that come up recently:

http://stackoverflow.com/questions/662898/what-to-do-with-multiple-projects-depend-on-the-same-source/662905

I'd do it myself, but I don't use them often enough to want to stick my neck out and write a tutorial on it. Google was surprisingly unhelpful with this topic.

link|improve this question

68% accept rate
feedback

3 Answers

I wrote a tutorial and put it on my site, because this is a much asked question. Also, I always forget how to do this, and I need to look it up all the time.

Shared Repositories using SVN Externals

link|improve this answer
1  
I just tried this in tortoise svn and I found it a lot easier. There was a dedicated wizard. – Thomas Coats Dec 1 '11 at 3:03
feedback

In case it isn't clear from the links provided above, the way you set the svn:externals property that is tied to a particular revision (pinning), here it is:

svn propset svn:externals "plugins -r12345 https://svn.example.com/common/plugins" extras

That will will make a plugins subdirectory under the extras directory and link it to revision 12345 of the external SVN URL https://svn.example.com/common/plugins.

There is a Red Bean article that suggests using propedit since the svn:externals can be a multi-line value. The above example would be changed as follows to use propedit.

svn propedit svn:externals extras

You would then add one line for each external link following the same format shown above for the value.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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