How can I branch in SVN and have it branch my svn:external folders as well? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T18:16:19Z http://stackoverflow.com/feeds/question/245337 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/245337/how-can-i-branch-in-svn-and-have-it-branch-my-svnexternal-folders-as-well 3 How can I branch in SVN and have it branch my svn:external folders as well? Brian R. Bondy 2008-10-29T00:10:44Z 2009-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#245360 3 Answer by Noah Goodrich for How can I branch in SVN and have it branch my svn:external folders as well? Noah Goodrich 2008-10-29T00:20:21Z 2008-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#245382 1 Answer by nickf for How can I branch in SVN and have it branch my svn:external folders as well? nickf 2008-10-29T00:28:04Z 2008-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#248367 5 Answer by Peter Parker for How can I branch in SVN and have it branch my svn:external folders as well? Peter Parker 2008-10-29T20:49:52Z 2008-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#1307255 0 Answer by Tyler for How can I branch in SVN and have it branch my svn:external folders as well? Tyler 2009-08-20T16:11:24Z 2009-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>