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
0
votes
1 answer

SVN externals to subdirectories only keeps the leaf directory in svn

I'm trying to add something like: subdir modules module1ext module2ext module3NOText other dir not from externals in which subdir/modules/module{1,2}ext are defined in externals specifically, but not /subdir nor /modules.This…
Neo
  • 1
0
votes
2 answers

SVN External failed due to authorization issues but can't figure out why

I've got a repo setup with 3 projects(1 per folder) and a 4th folder with some supporting DLL code in it. In each of the 3 projects I have setup svn:externals to this supporting DLL folder. When I try to update any of the main projects I get the…
MartinD
  • 67
  • 6
0
votes
0 answers

Setting svn:externals to root or atomic non-interactive propedit

I'm using svn:externals for automated module to system build promotion on source code level so that /branches/release-123/modules/xxx would contain a promoted revision of /trunk/modules/xxx I was thinking to create…
user3474104
  • 85
  • 1
  • 9
0
votes
1 answer

Resolve svn status S – find where an erroneous svn:externals property is defined

How I got here After painstakingly merging 2 divergent folders of what should have been the same codebase (which different people were working on in different locations), I attempted to consolidate the codebase seamlessly by setting one of these…
Barney
  • 16,181
  • 5
  • 62
  • 76
0
votes
3 answers

Removing single svn:external giving PROPPATCH error

We have a thridparty repository where we have externalized all the third party libraries. From there, we pull these libraries to the server code repository. Earlier, we had two versions of junit (4.10 and 4.11) which were externalized. I am working…
TechSpellBound
  • 2,505
  • 6
  • 25
  • 36
0
votes
1 answer

SVN pegged externals unxpected behavior

We are using svn:externals with pegged revisions to re-use common components. We've noticed some unexpected behavior which I suspect may be a bug. Let's assume we have a folder A which has an svn:externals property which points to folder B at…
shayc
  • 121
  • 9
0
votes
1 answer

How to reuse the same SVN resource in multiple places

In SVN I have following folders: some_path/solution_A/some_project some_path/solution_B There is some project inside solution_A that I want to reuse in solution_B. It's not a problem in ClearCase or Perforce where I can map this project to any…
Vlad
  • 1,977
  • 19
  • 44
0
votes
1 answer

How to use svn externals for a multi-module build in mixed branches?

I've read http://svnbook.red-bean.com/en/1.7/svn.advanced.externals.html, but I didn't see the info I needed. It (barely) talked about propset, but not propedit, which is what I wanted. I have the v1.8 client. Say I have the following module…
Chris F
  • 14,337
  • 30
  • 94
  • 192
0
votes
2 answers

Remove svn external dependencies, and integrate the current revisions into my repo

One repository that mine has been depending on decided to delete the folders that my externals were set to. The next time that I tried updating my repository, TortoiseSVN would complain that the affected externals could not be found at their URL. I…
gcode
  • 2,954
  • 4
  • 21
  • 32
0
votes
0 answers

Relative Path in Tortoise svn:externals

I'm using tortoise SVN to version my projects. since they have some common libraries I'm using the external propriety in order to link the common repository. If I use the string with the absolute path everything works fine (but other users cannot…
andrea
  • 1,326
  • 7
  • 31
  • 60
0
votes
1 answer

Subversion: Change all static externals from operative to peg revisions?

We have some shared libraries, and these are referenced as static externals in all tagged versions of our different projects. After reorganizing the directory structure of our shared libraries, I see that all tagged versions now gives an error. I…
elaxsj
  • 474
  • 1
  • 5
  • 16
0
votes
1 answer

svn:externals for single file does not work

I have set up the svn:externals to get single file from repository, like so: /svn/BuildScripts/build.xml build.xml and when I run svn up I get Fetching external item into 'build.xml' svn: warning: Repository UUID…
Bolek Tekielski
  • 1,194
  • 2
  • 10
  • 25
0
votes
1 answer

Handling Subversion external links inside other external links

We would like to use the subversion external link ability, but have hit a wall on getting external links to work in the way that we need them given that we probably have an abnormal arrangement of source. The use case is such, we have an external…
user626201
  • 1,623
  • 3
  • 19
  • 36
0
votes
1 answer

Ant script execute svn to set svn:externals doesn't work

In Ant's build.xml, I use Ant's exec task to call svn with the args like this: And what…
0
votes
1 answer

Inconsistent behavior of SVN Info with externals

Due to a complex structure in a SVN repository, some external files are not correctly retrieved from the repository. As changing the repository structure is not an option, I have developed a script that iterates through the externals and retrieves…
Marda
  • 161
  • 1
  • 11
1 2 3
16
17