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

Svn Externals Check-out Of Bzr Repo?

Is it possible to check-out a Bzr repo via Svn externals using an Svn client? If Bzr is being served over Web-DAV (it is in my case) it seems like it should be possible, unless Svn needs all the ".svn" folders.
Paul R Rogers
  • 914
  • 1
  • 9
  • 19
1
vote
0 answers

grayed-out checkboxes when committing to multiple svn externals

(Similar to 13755618) I am currently working on a project which is composed of multiple software units stored on one SVN repository. To assemble the project, I am using svn:externals as below (although in reality there is more like 30-40 individual…
ichiwahato
  • 211
  • 1
  • 2
  • 15
1
vote
1 answer

Git submodules from svn-externals

I'm trying to bring a project from svn to git. In the project, I have 2 externals. I've made 2 folders for the externals and clone them in each folder. After, I've cloned the project itself. So, I've got 3 repo : 1 for the project and 2 for the…
Emile
  • 592
  • 10
  • 36
1
vote
1 answer

Display SVN externals in PhpStorm

Is it possible to see the SVN externals in PhpStorm? Like in Eclipse there is a red arrow that marks the external folder. And yes I know that I can get the overview of the properties.
mk2015
  • 205
  • 2
  • 14
1
vote
3 answers

Do you have a clever hack to work around svn:externals not being supported in bzr-svn

I'm using bzr to access a Subversion repository. Which is great, but the repository uses quite a few svn:externals properties to bring in code from related projects. Bzr-svn doesn't support svn:externals yet. Is there a good way to work around…
Darcy Casselman
  • 2,574
  • 3
  • 24
  • 26
1
vote
1 answer

Svn pre-commit hook to external sources

We have huge 'global' svn repository for automatic test files. Those test are run on environment, that checkouts that repo. Now, my team has our 'own' repository, that has only external paths to 'global' (mostly, because checkout our path takes…
User007
  • 295
  • 4
  • 11
1
vote
2 answers

Import Git repository with submodules into a Subversion repository

What is the best approach for importing a Git project with submodules into a Subversion repository? Not sure if it matters, but the submodules are pointing to the Kohana core and module repositories on github. It would be nice if I could reference…
1
vote
1 answer

how to add a file as an svn:external using pysvn

I am working with pysvn, I want to a folder to repository as an svn:external . any idea how to do this in pysvn?
Angrezy
  • 141
  • 2
  • 10
1
vote
1 answer

Getting started with git-svn with multiple users

In our project we have to commit all changes to the clients svn repository. I want to move our team to git. So I'm thinking I'll need a central git repository that uses git-svn to push to the svn server. My questions: Is there a way I can get the…
Evert
  • 93,428
  • 18
  • 118
  • 189
1
vote
2 answers

Checkout a Specific Folder within a Git Repository

I have multiple projects in different repositories: tools thirdparty shared ├──Common ├──Exceptions multimedia ├──VolumeControl ├──VideoRenderer android ├──Audio For example, android depends on shared/Common, shared/Exceptions, tools,…
ssk
  • 9,045
  • 26
  • 96
  • 169
1
vote
2 answers

SVN external tagged at Last Changed Rev 'doesn't exist' according to server

I am requesting from the SVN server a revision of an external which is guaranteed to exist, because it's the latest modified revision number. Instead of getting the external like normal, I get nondescript errors. Here's my svn:externals definition…
adowdy
  • 329
  • 2
  • 16
1
vote
0 answers

Pre-commit hook that checks svn:externals for tags directory

I'm trying to check my externals through an SVN Pre-commit hook. The svn:external contains an shared library through multiple projects. On the Pre-commit hook, I want to check if the external is pointing to a Tag directory and not to the trunk or a…
Roel Balink
  • 417
  • 1
  • 4
  • 19
1
vote
0 answers

Create SVN overview including externals

I've seen many questions about creating an graphical SVN overview with differnt programs. Is any of those able to take externals into account? I am using svn::externals to link different libs to my project.
MKFein
  • 79
  • 1
  • 7
1
vote
0 answers

Issues using svn:externals

I want to link directories in SVN as shown in this post: Is it possible to link SVN repository files so that a file is actually a reference to another repository's file? however I seem to be doing something wrong. Here is what I am doing: cd…
still learning
  • 157
  • 2
  • 14
1
vote
0 answers

What is the best way organize a solution with shared nested (SVN External) project files?

So a little bit of history; I maintain a svn where, various repositories for applications and shared libraries all sit off root of the server root App1 (depends on ORMthing, UIstuff, Common1 ) trunk... App2 (depends on ORMthing, UIstuff,…