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

Importing external into my own SVN repository

I use TortoiseSVN to keep track of a few projects. One of my repositories (let's call it "Repo A") has an external which is a certain folder from another "Repo B", but from now on I need to commit certain changes to this folder and these changes are…
Marc.2377
  • 7,807
  • 7
  • 51
  • 95
0
votes
1 answer

SVN externals, how to handle same paths

I want to migrate from VSS to SVN, and the reason of my question lies behind the logic which these 2 systems use. My enterprise project has single source, but few files from UI,(jsp pages,etc.) are different. So as in VSS we have branched them, and…
0
votes
1 answer

How to find all svn:externals references to a given URL?

Is there a way to quickly find all svn:externals references to a URL on-demand, among repositories that we control, using svn, TortoiseSVN, and/or some other tool? (e.g. Plugin/extension, hook scripts, etc.) If not, would the correct/best way be to…
cp.engr
  • 2,291
  • 4
  • 28
  • 42
0
votes
1 answer

SVN: Copy from one repository to another, keeping externals

I currently have a problem I was not able to find a answer to, as it seems a little special. My problem: We have two repositories here. Repository A is holding common stuff and Repository B is one specific project. In Repository A we have a template…
Gunter
  • 321
  • 4
  • 13
0
votes
1 answer

How to change svn:externals from bash file non-interactive

I have multi externals need to be set within a file externals.txt and I attempt to change the svn:externals from a bash: svn pe svn:externals svn://hostname/branchname -F extenals.txt But the command throws out an error: svn: E205007: None of the…
jayatubi
  • 1,972
  • 1
  • 21
  • 51
0
votes
2 answers

How to fetch 2 or more folder with external in svn?

Context I'm presently using SVN externals property to fetch a folder. I'd need to fetch a second folder in the directory. The environnement I'm working on is like this Trunk/ Mtx/ MtxTest/ MtxOver/ .../ Tries I tried separating…
Cher
  • 2,789
  • 10
  • 37
  • 64
0
votes
1 answer

subversion ignore nestered externals

I'm working on a big project using subversion, and we use externals everywhere. This makes an "svn up" take forever since it has a delay on each external. To fix this, I want to remove some nested externals. Is there a way to add an external but…
intensity
  • 3
  • 1
  • 3
0
votes
1 answer

Download from external subversion repository and merge own code

My project "A" is in my own svn repository. My project A needs a reference to an external project "B". But I need to modify the code of project B. I cannot commit code to project B since this is not my project. I want to checkout project B and merge…
jimbo
  • 582
  • 1
  • 11
  • 28
0
votes
1 answer

Managing SVN Checkout for users that don't have access to externs

I have a folder in one SVN repository (repo1) that has an extern to another SVN repository (repo2). I have a user that has access to repo1 but not repo2. When that user tries to do the checkout they get an error message when checking out the…
ashah
  • 193
  • 1
  • 4
  • 15
0
votes
1 answer

How to get an svn external to be checked out to some other location

I don't know if this is possible but still if someone can help me that would be very helpful. I have all externals at the top level in my repository and i want one of the externals to be checked out inside the src directory. can this be possible…
cedrajin21
  • 65
  • 1
  • 8
0
votes
0 answers

Subversion: Can't merge external folder

I have a folder in my subversion repository that point to an external resource. Updating the folder works fine, but when I try to merge the folder into another folder, I get the following error: svn: E160013: '/pharma/!svn/bc/29/branchtest/shared'…
Dietrich
  • 151
  • 1
  • 6
0
votes
1 answer

How to make svn follow a symbolic link to a file in a different project?

I have two repositories A and B with LaTeX files/projects. Repository A contains a bibliography file mybib.bib and I would like to use this file in repository/project B as well. I created a symbolic link in repository B to mybib.bib but if my…
Marius Hofert
  • 6,546
  • 10
  • 48
  • 102
0
votes
2 answers

Subversion svn:externals - What's wrong here?

I first want to say I've read the Subversion manual. I've read this question. I've also read this question. Here's my dilemma. Let's say I have 3 repositories laid out like…
0
votes
1 answer

How set external gem into project using svn?

I need to add gem into vendor folder as external using SVN. Path to add gem /vendor/gem_name. Path to svn repo path_to_svn_repos/gem_name/trunk I try to do it, but it remove all another externals and add my gem :( I need to append this gem to…
bmalets
  • 3,207
  • 7
  • 35
  • 64
0
votes
2 answers

Trying to create a pre-commit hook that verify externals

I am currently trying to create a pre-commit hook that prevent user to tag a version of code with external that are not tags. I am just trying to figure out a way to get the external that are specify in a transaction but cant figure out how. The…
wincrasher
  • 121
  • 1
  • 10