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 branch excluding resources directory

I have trunk and long time (forever) branch and both use the same resources. I mean that the translation of texts in the project are not the subject of branching. I have been merging the resources for long time but I would like to get rid of the…
Tomas Kubes
  • 23,880
  • 18
  • 111
  • 148
0
votes
1 answer

SVN: Change location of externals files, now can't access in Eclipse

I recently had to change the IP Address on our SVN server. I switched the repository to the new IP Address without any problems and I edited the location of the my external folder using the following command: svn propedit svn:externals . But in…
Stephen
  • 4,715
  • 8
  • 53
  • 78
0
votes
1 answer

SVN Changed IP Address - External files pointing to old IP Address

I've had to do some server maintenance on our SVN Master server, this involved changing IP address. I used the following command to relocate the repository: svn switch --relocate…
Stephen
  • 4,715
  • 8
  • 53
  • 78
0
votes
1 answer

set svn:externals to a repository url from command line

Am trying to set svn externals directly to a repository url from the command line. I would like to know if there is a way to accomplish this without checking out a working copy Thanks Ipoo Doh
Ip Doh
  • 5
  • 1
  • 5
0
votes
1 answer

Disable SVN checkout for external locations in NetBeans 7.3

So here is the problem. When checking out SVN repository it completes it but then creates a new directory with the same name and checkouts everything in that. This recursive checkout process goes on forever. I'm using NetBeans and in output window…
Krabats
  • 325
  • 4
  • 12
0
votes
1 answer

How can I use SCM on linked files in VS2008 projects?

Background: I'm using Visual-SVN V. 1.7.5 with VS2008. I'm fairly new to SVN. I have a Solution that uses source files that will be shared with other Solutions. I've put these files in a folder called "Shared", and added them to my Solution…
Tom Bushell
  • 5,865
  • 4
  • 45
  • 60
0
votes
2 answers

Troubles with svn:externals inside another svn:externals

I have some troubles in checking out a tagged version in my svn repository and most likely because of an inner 'svn:externals' that is not referring to the correct revision. Lets consider simplified situation: I have a first svn repository which…
CitizenInsane
  • 4,755
  • 1
  • 25
  • 56
0
votes
1 answer

GIT SVN Externals Url Directory Order

I'm using GIT-SVN at work because i've used GIT extensively and like the ability to do local branches on my own machine. With that being said, They are also using svn externals at my job to handle shared library components. I do not have control…
Casey
  • 195
  • 11
0
votes
1 answer

Grabbing unversioned externals into svn check-out

I hope this question can make sense. I use svn externals generally to grab versioned items from another svn check-in. This is not what I am after. We have many .dlls and many sources files from third party providers we do not want to check in to our…
Anicho
  • 2,647
  • 11
  • 48
  • 76
0
votes
1 answer

What happens when SVN can no longer access the url in svn:externals

Say I have a repository like this: trunk/ src/ lib/ somelib Somelib is linked to specific revision of a subversion repository beyond my control, at http://some.svn.url.com/trunk. What happens if http://some.svn.url.com/trunk disappears…
Eric
  • 95,302
  • 53
  • 242
  • 374
0
votes
1 answer

Is It Possible to Create Read/Write Dependency?

Just curious if it's possible to create a read/write (2 way) external dependency using svn:externals. I noticed that any time I create new files within the folders that belong to the external repos and add/commit them I get the following…
VinnyD
  • 3,500
  • 9
  • 34
  • 48
0
votes
1 answer

add external non-svn resource to svn

I've a project that need very huge amount of data to run properly. The code is on svn, but these data are not. Now I've written into the REAME: you need to download the data from http://... into share for example: wget http://... share/... I want…
Ruggero Turra
  • 16,929
  • 16
  • 85
  • 141
0
votes
1 answer

Eclipse: possible to SVN commit to the master project while committing a sub-project?

In my project I have a directory structure like this : project --common --subproject --common (junction, not a copy) The subproject needs some files from common. Therefore I created a 'junction' (in XP using the sysinternals…
Dylan
  • 9,129
  • 20
  • 96
  • 153
-1
votes
1 answer

SVN content from multiple locations at single folder

Here is the scenario. In a svn repository, there are multiple folders under same folder tree. Say structure is as: ProjectA | | - Folder1 | - Folder2 Now in a separate folder tree: ProjectB | - FromExternalProject (needs all contents of Folder1…
dushyantp
  • 4,398
  • 7
  • 37
  • 59
1 2 3
16
17