1

I'm using bzr to access a Subversion repository. Which is great, but the repository uses quite a few svn:externals properties to bring in code from related projects.

Bzr-svn doesn't support svn:externals yet.

Is there a good way to work around this limitation?

Aziz Shaikh
  • 16,245
  • 11
  • 62
  • 79
Darcy Casselman
  • 2,574
  • 3
  • 24
  • 26

3 Answers3

3

Today another option is available: bzr-externals plugin. Check it!

bialix
  • 20,053
  • 8
  • 46
  • 63
  • bzr-externals won't look at the actual svn:externals file properties though, will it? – jelmer Oct 11 '12 at 20:50
  • @jelmer No I don't think it does, and quickly scanning it's launchpad page it doesn't mention svn other than saying it's like svn-extenals. – AmanicA Oct 12 '12 at 01:34
2

I'm working on emulating svn:externals in bzr. It's not related to bzr-svn but instead tries to provide generic solution. Project still in the alpha stage but many things are working today. You can have a look at the project and it's docs. https://launchpad.net/bzr-scmproj

This plugin does not support svn:externals natively, but you can bring the required values to project config. If your svn:externals is not changed often it will work for you well.

bialix
  • 20,053
  • 8
  • 46
  • 63
0

FWIW, externals will probably be supported in a couple of months, when nested tree support in Bazaar itself lands.