How can I branch in SVN and have it branch my svn:external folders as well? - Stack Overflow most recent 30 from stackoverflow.com2009-12-07T18:16:19Zhttp://stackoverflow.com/feeds/question/245337http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/245337/how-can-i-branch-in-svn-and-have-it-branch-my-svnexternal-folders-as-well3How can I branch in SVN and have it branch my svn:external folders as well?Brian R. Bondy2008-10-29T00:10:44Z2009-08-20T16:11:24Z
<p>I'm using tortoise svn in Windows.</p>
<p>How can I branch in SVN and have it branch my svn:external folders as well?</p>
http://stackoverflow.com/questions/245337/how-can-i-branch-in-svn-and-have-it-branch-my-svnexternal-folders-as-well/245360#2453603Answer by Noah Goodrich for How can I branch in SVN and have it branch my svn:external folders as well?Noah Goodrich2008-10-29T00:20:21Z2008-10-29T00:20:21Z<p>When you create a branch within Subversion you are simply creating a cheap copy of the trunk, branch, or tag that you are branching from. This cheap copy will contain all of the same files and properties as the trunk, branch, or tag that you branched from until you begin to modify the properties or files of the new branch. </p>
<p>However, you may be able to modify one of the 'commit' hooks to modify settings automatically once you commit your branch. <a href="http://svnbook.red-bean.com/en/1.1/ch05s02.html" rel="nofollow">http://svnbook.red-bean.com/en/1.1/ch05s02.html</a></p>
<p>Otherwise if you want your externals to be modified on the branch you will need to do so manually.</p>
http://stackoverflow.com/questions/245337/how-can-i-branch-in-svn-and-have-it-branch-my-svnexternal-folders-as-well/245382#2453821Answer by nickf for How can I branch in SVN and have it branch my svn:external folders as well?nickf2008-10-29T00:28:04Z2008-10-29T00:28:04Z<p>You'll have to manually create a branch in your external repository and then change your svn:external property to point to the correct branch.</p>
http://stackoverflow.com/questions/245337/how-can-i-branch-in-svn-and-have-it-branch-my-svnexternal-folders-as-well/248367#2483675Answer by Peter Parker for How can I branch in SVN and have it branch my svn:external folders as well?Peter Parker2008-10-29T20:49:52Z2008-10-29T21:14:41Z<p>You should use <code>svn:externals</code> as <strong>external</strong> references from different repositories. So <code>svn:externals</code> should refer to components, modules, 3rd party tools, etc.</p>
<p>You should <strong>not</strong> use <code>svn:externals</code> to emulate a "symbolic link"-behaviour by using externals to point into the same repository.
You can solve such issues most of the time by modifying your build-structure, or use checkout-scripts and sparse checkout feature.</p>
<p>svn:externals have a lot of problems most of them are difficult to see, track and repair:
<a href="http://stackoverflow.com/questions/223355/i-cannot-commit-changes-after-merge-in-svn">see an example here</a></p>
<ul>
<li>commits cannot span over externals(no atomic commits)</li>
<li>branches will not branch their externals(as you pointed out)</li>
<li>tags will not "freeze" their externals so latter builds may result in different/broken builds</li>
<li>merging and reeintegrate merge will not work on externals</li>
</ul>
<p>If you use externals to point to other repositories, you will most of the time do not have these problems.</p>
http://stackoverflow.com/questions/245337/how-can-i-branch-in-svn-and-have-it-branch-my-svnexternal-folders-as-well/1307255#13072550Answer by Tyler for How can I branch in SVN and have it branch my svn:external folders as well?Tyler2009-08-20T16:11:24Z2009-08-20T16:11:24Z<p>Isn't there some way to define one of those svn:externals symbols to define "same relative path to the root on a different repository" ... ?</p>