Questions tagged [svn-externals]

svn:externals allow a part of an external Subversion repository to be checked out within another working copy, by setting the svn:externals property on a directory in that working copy.

Externals Definitions (svn:externals SVN property) help you to construct a working copy that is made out of a number of different checkouts.

An externals definition is a mapping of a local directory to the URL — and ideally a particular revision — of a versioned directory. In Subversion, you declare externals definitions in groups using the svn:externals property.

The convenience of the svn:externals property is that once it is set on a versioned directory, everyone who checks out a working copy with that directory also gets the benefit of the externals definition. In other words, once one person has made the effort to define the nested working copy structure, no one else has to bother — Subversion will, after checking out the original working copy, automatically also check out the external working copies.

Reference:

254 questions
1
vote
1 answer

How to include subfolder from one git repo to another?

Say I have Project1 in a git repo. Within Project1 there is a subfolder that I want to include in Project1+ (Project2, Project3, etc.) By "include" I don't mean copy-and-paste. I want a reference to Project1 so that if I make changes to Project1 I…
Josh
  • 145
  • 1
  • 7
1
vote
0 answers

Externals missing after Migration from Visual Source Safe

Possible Duplicate: how linked files in vss repository can be migrated to svn repository I'm currently just finish migrating Visual SourceSafe Database into VisuallSVN using VSS2SVN Open Source Code. However i found out that the externals links…
1
vote
2 answers

Does Source of SVN Externals Has To Be A Repository?

I'm trying to set up a svn externals on my local Windows machine with TortoiseSVN. I created a working directory by selecting SVN Checkout. It contains a directory named lib whose contents should be imported from an external location. I followed…
Teno
  • 2,582
  • 4
  • 35
  • 57
1
vote
1 answer

set svn:externals from script

I am trying to set the svn:externals property from a bash script. The line that fails is: svn propset svn:externals \'WEB-INF/src/com/project https://subversion.assembla.com/svn/myProject/branches/Release_$Version/com/project\' . Where $Version is…
1
vote
2 answers

SVN Propset with in Python Script

I'm automating project creation with a python script. I can create repositories, checkout, commit, and import directories, all from within python. What it won't seem to do is set the svn:externals property. I can set this from command line but when…
paul
  • 1,655
  • 11
  • 23
1
vote
1 answer

Auto-updating a dependency repo when I update its dependent repo

We have a load of common third party assemblies in a separate repo to our development projects. This means that occasionally (around once a month), there are potential problems when some code in one of our projects calls a method in a newer assembly…
DavidWainwright
  • 2,895
  • 1
  • 27
  • 30
0
votes
1 answer

svn:externals ignoring specified revision

I'm using svn:externals and I've specified a specific revision using the SVN1.5+ format, but SVN seems to ignore the revision number. $ svn --version svn, version 1.6.17 (r1128011) $ svn propget svn:externals trunk/project1/src/library/Deit/ -r658…
James Newell
  • 652
  • 8
  • 12
0
votes
2 answers

svn:externals help (TortoiseSVN 1.7.6)

I have a directory D:\SVN_HOME\EclipseWorkspace\MF_CENTER_INFO SVN_HOME - is a root svn working folder MF_CENTER_INFO - the folder which I want to be commited to another svn repository The default repository for D:\SVN_HOME\ is…
VextoR
  • 5,087
  • 22
  • 74
  • 109
0
votes
1 answer

Accurev Externals?

Does Accurev have a feature like SubVersions 'svn:externals'? This works like a symbolic link to another area of the repository. Example: In my subversion test automation projects I had my shared libraries defined as a 'svn:externals' within each…
GlennH
  • 105
  • 1
  • 3
  • 11
0
votes
3 answers

SVN: branch of read only repository?

I have access to a read-only SVN repository of a certain project. I want to extent this project with my own modifications/additions. If I had full access to this repo, i could simply make my own development branch. However, I have not (and won't get…
peter
  • 1
0
votes
1 answer

Patching external SVN repository

I'm asking this for a coworker, I think it would be better, if he has a patch for an open source project to just send it to the admin of the project, but he wants an immediate solution and I don't want to convert an external repository. So, is there…
Peter Turner
  • 11,199
  • 10
  • 68
  • 109
0
votes
2 answers

Svn external on external directory

I have this svn:external file in a project: Silex https://github.com/fabpot/Silex/trunk Silex/vendor/Symfony/Component/BrowserKit https://github.com/symfony/BrowserKit/trunk Silex/vendor/Symfony/Component/ClassLoader…
Manuel
  • 836
  • 13
  • 30
0
votes
2 answers

set up a local SVN with svn:external branch for merging (from scratch)

I wonder if it is possible to set up an SVN subversion system (btw, i'm on Ubuntu 11.10) for particular folder with two different sources and track changes simultaneously? The situation is the following: There is an Open Source project which is…
Denis
  • 1,526
  • 6
  • 24
  • 40
0
votes
0 answers

SVN - How to correctly "Update to revision" when current revision has external?

I have a repo checked out on my PC and in rev#244 I added an external to my repo /src/Common/Build Actions The "Build Actions" folder is the extenal. This "Build Actions" folder did exist in the "Common" folder before this untill 244, but not as an…
0
votes
0 answers

svn log of svn:externals properties in a directory

I'm working on a project where there is a directory with a multiline svn:externals property. We would like to perform an 'svn log' of changes in the directory, only for the svn:externals property, not for changes in files and subdirectories, How…