vote up 3 vote down star
1

I'm using tortoise svn in Windows.

How can I branch in SVN and have it branch my svn:external folders as well?

flag

4 Answers

vote up 5 vote down check

You should use svn:externals as external references from different repositories. So svn:externals should refer to components, modules, 3rd party tools, etc.

You should not use svn:externals 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.

svn:externals have a lot of problems most of them are difficult to see, track and repair: see an example here

  • commits cannot span over externals(no atomic commits)
  • branches will not branch their externals(as you pointed out)
  • tags will not "freeze" their externals so latter builds may result in different/broken builds
  • merging and reeintegrate merge will not work on externals

If you use externals to point to other repositories, you will most of the time do not have these problems.

link|flag
vote up 3 vote down

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.

However, you may be able to modify one of the 'commit' hooks to modify settings automatically once you commit your branch. http://svnbook.red-bean.com/en/1.1/ch05s02.html

Otherwise if you want your externals to be modified on the branch you will need to do so manually.

link|flag
Modifying an svn-commit transaction via hook scripts is not advisable and not supported by the svn community. It will result in serious workingcopy desynchronisations! – Peter Parker Oct 29 '08 at 20:40
vote up 1 vote down

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.

link|flag
this is not feasible for me because I have a lot of svn:externals in my project – Brian R. Bondy Oct 29 '08 at 0:30
vote up 0 vote down

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" ... ?

link|flag

Your Answer

Get an OpenID
or

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