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
2 answers

How to fill my lib folder from jar files located in different svn repositories?

I have structured my jave project as: MyProejct - src - build - test - lib - .. In the root of my lib folder, I've placed all of my external .jar files (hibernate, jboss, etc). Now I have decided to move all my third-party jar files into…
TonySalimi
  • 8,257
  • 4
  • 33
  • 62
1
vote
1 answer

Merge back to trunk and include modifications to externals

In my svn repository, I have a trunk that has a set of externals on it. I have made a branch that also has it's own set of externals corresponding to the trunk (copied everything to a new location and referenced it the same way as the trunk, just…
steve
  • 223
  • 1
  • 4
  • 15
1
vote
1 answer

Including Zend Framework using svn-externals, svn update fails half way

I would like to include Zend Framework into my repository using svn:externals = -r24607 http://framework.zend.com/svn/framework/standard/tags/release-1.11.9/library/Zend/ Zend . I am using Tortoise SVN TortoiseSVN 1.6.16 on Windows 7. When I try to…
Artem Goutsoul
  • 733
  • 5
  • 17
1
vote
1 answer

How can I change a svn external in the repository

We have a number of externals in our project and I wish to create an additional branch within them. I have gone in and modified the svn:external properties on my local copy and all is good there and have attempted to commit these to the repository…
Brian Barnes
  • 1,009
  • 7
  • 15
1
vote
2 answers

Hudson update doesn't download "svn:externals" projects

I have a project which has one subfolder. This subfolder has 3 children folders: D:\MainFolder |---SubFolder |----ChildrenFolder1 |----ChildrenFolder2 |----ChildrenFolder3 SVN Externals was set using Tortoise. When I use Update from…
Junior Mayhé
  • 16,144
  • 26
  • 115
  • 161
1
vote
1 answer

Mimicking/faking svn:externals using TFS

I have multipile projects, each of which references the same library project. I want to be able to make changes to the library to support one of those projects without having to support those same changes in all of my projects. In SVN, all I had…
Matt Zappitello
  • 785
  • 2
  • 11
  • 30
1
vote
0 answers

How do I remove the externals propery of a folder in an SVN branch but retain the files?

I have a branch in my SVN repo that has one folder with externals. I wish to remove the externals property from that folder but retain the files in the folder so that I can change them without affecting the original externals folder. How do I do…
Rick N.
  • 41
  • 4
1
vote
1 answer

Check SVN Folder externals via System Command Line

i currently try to access the list of all externals in a specific folder via the system command line. I tried following follwing command: TortoiseProc.exe /command: propget svn:externals -R Can somebody help me with that ? Cheers
GioCa
  • 13
  • 2
1
vote
1 answer

changes to be committed to SVN External

I have some code, in which parts are pulled from several other external repositories (e.g., url: http_external_repository). I have made certain changes to these external code. my question is how I could commit these changes, 1) if I want to commit…
pepero
  • 7,095
  • 7
  • 41
  • 72
1
vote
1 answer

Doctrine 2 and SVN Externals

Anybody know how to set up Doctrine 2 through SVN externals? I found this project but it seems to be outdated.
Jeremy Hicks
  • 3,690
  • 5
  • 40
  • 52
1
vote
1 answer

Handling projects which refer to multiple SVN repositories

We have several projects which we store in a single repository (let's call it repository A). Some of the projects in repository A, use files which are source controlled in another repository (let's call it repository B). The relationship is never…
bpeikes
  • 3,495
  • 9
  • 42
  • 80
1
vote
1 answer

Automatically updating svn:external

I'm splitting an SVN repository into two: project1, and common. This way, I can also make project2 which also depends on common. project1 will contain an svn:external link to common. I'd like people to constantly develop against the HEAD of…
Stewart
  • 4,356
  • 2
  • 27
  • 59
1
vote
3 answers

How do I update all svn:externals references after a server migration?

I migrated an SVN server today and ran into an issue. I have a repo that has an svn:externals property on a trunk subfolder. This folder has been branched a bunch of times and now this svn:externals reference needs updated on every single branch to…
Michael Haren
  • 105,752
  • 40
  • 168
  • 205
1
vote
1 answer

SVN: Can I commit files that I manually added to a directory of an svn:external?

I have a repository R, in which I have an svn:externals entry to repository X under directory vendors/x. I now added a file manually at vendors/x/subdir/myfile. The subdir was already provided by repository X. What I want to do is commit myfile into…
Pelle
  • 6,423
  • 4
  • 33
  • 50
1
vote
1 answer

Can SVN external item point to an item in a different repository?

Let's say I have two repositories: "Library Repo" and "Project 1 Repo". Library repo contains code that should be used by multiple projects and is version controlled appropriately. Project 1 repo is a single project that wishes to use some of the…
Izzo
  • 4,461
  • 13
  • 45
  • 82