Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

50
votes
4answers
6k views

Can I emulate svn:externals using mercurial?

We are considering a move from SVN to Mercurial, and have encountered a stumbling block. We currently use svn:externals to automatically pull a common set of libraries into the working directory. I ...
10
votes
5answers
1k views

Shared components throughout all projects, is there a better alternative than svn:externals?

My situation: I have several components, which sometimes have changes to them, and are shared across a lot of different projects. Each project puts these in a subfolder called /depends. The depends ...
8
votes
2answers
384 views

Is the subprepos feature in Mercurial 1.4.x ready for production use?

I'd like to evaluate Mercurial for my working projects. But most of my projects very heavily rely on the presence of svn:externals-like support. I've searched over StackOverflow and googled for ...
6
votes
2answers
984 views

can we set single file as external in subversion

can we set single file as external in subversion
5
votes
1answer
1k views

git & svn externals - a final solution yet?

this is the workflow I currently use for my svn projects (I never use svn branches, and some projects are actively worked on by other people as well): on the server, do the inital git svn fetch ...
5
votes
2answers
200 views

Does SVN support some sort of comments in its properties?

I want to use SVN externals on my projects to include a number of third party plugins. I've found this blog post recommending saving the svn:externals value in a file (called svn.externals) with the ...
5
votes
6answers
2k views

How to have tortoisesvn Always freeze svn:externals for tags

Is this possible with tortoiseSVN?: Always freeze svn:externals for tags the scenario is our trunk will always use the 'head' revision for externals, however when we create 'tags' we would like for ...
5
votes
1answer
275 views

svn:externals & tagging, how to combine code between teams

In our company, we are working on a product composed of different C/C++ modules. Ideally, each tier and module should be developed by separately by different teams and tested independently. Currently, ...
5
votes
4answers
884 views

How to forbid subversion commits to svn:external to revisions?

We use svn:externals to specific revisions of a library, e.g. like xyzlib -r12345 https://asdf.asdf.local/xyzlib/trunk/ When you make a modification in your working copy to such a checked out ...
4
votes
1answer
549 views

Configure (or mimic) svn:externals to include code from Github in a svn-hosted project

We use Subversion locally, and we're working on a project that uses a fork of Fluent NHibernate, which is hosted on Github. I'd like it set up so that a single svn checkout will retrieve everything ...
4
votes
2answers
678 views

How to deploy Subversion externals?

We're testing the waters with SVN, with Beanstalk as a host. Our setup looks something like this: Repository: Modules Module 1 Module 2 Module 3 Repository: Website 1 Custom website code ...
3
votes
1answer
533 views

svn: clean way to replace external with local folder of same name

I have a repository checked out in various places. I have a folder X that is an external to another repository. I want X to be local. There are other questions but they don't seem to have run into my ...
3
votes
2answers
153 views

Committing relative externals from Subversion

Our Subversion repository has several subdirectories containing shared files as well as subdirectories for each project. Projects are set up with relative svn:externals properties to pull in shared ...
3
votes
4answers
751 views

How to get SVN to ignore a directory inside an externals definition

I'm using subversion to host my own repository for a WordPress installation. I've got it set up so that all of the core WordPress files are in their own directory (called wordpress) and set up to use ...
3
votes
4answers
360 views

Can svn:externals be used while ignoring externals for that URL?

Is it possible to ignore external dependencies for a tag referenced in an svn:externals property? This may sound like a very strange question, but let me explain... I have a rather large collection ...
3
votes
4answers
357 views

How can I cause subversion to check out projects from other repositories?

I recently was working with a subversion project that checked out code not only from the repository I was working with, but also from a separate repository on a different server. How can I configure ...
2
votes
1answer
71 views

svn merge with svn:externals causes massive add of svn:merge-info properties - any solution?

If you have a directory with an svn:external link it in (which we use extensively at work), then whenever you merge that directory between branches, every file in the directory gets a new ...
2
votes
1answer
149 views

Add Android Library into Project using svn:external

Is it possible? There are three games which use common android lib and situated here - http://server.us/svn/greatlib. My dream (and my PM's too ;) to "checkout by one click". Before I have to ...
2
votes
1answer
224 views

svn:externals problems during merge

let's consider following SVN stucture: * /Project_1/trunk/1.txt * /Project_2/trunk/dir1 * /Project_2/trunk/dir2 Let's assume following scenario which leeds to an error: * You add svn:externals to ...
2
votes
2answers
515 views

Subversion svn:externals file override?

I have a repository for one of my projects that has a nested repository using the svn:externals property to update files from an external library. The problem is that I need to comment out one of the ...
2
votes
2answers
1k views

svn reintegrate a branch with externals fails

using svn 1.6.6 with tortoisesvn 1.6.6 what I am doing: 1) Apply external properties to a folder in the trunk (both single file and folder external, externals are binary files) 2) Create a branch ...
2
votes
1answer
302 views

Sparse checkouts and svn:externals

I'm trying to do a sparse checkout of a folder containing externals, but none of the externals are being checked out. This issue seems to indicate that this behavior may be by design, or at least that ...
2
votes
1answer
273 views

include externals in subversion diff

i have setup my project in SVN to use an external library. When i want to push some modifications to the live server i do a diff between versions and copy only the changed files. My problem is that ...
2
votes
3answers
2k views

when updating a whole project's root, how to exclude svn externals from being updated?

Is there a way to exclude all svn externals when doing a recursive update? Is there a way to exclude only 1 of all of the svn externals when doing a recursive update? Basically I'd like to cut down ...
1
vote
1answer
88 views

SVN External Folders and Files show up as 'non-versioned'

I am an SVN noob that has been given the job of investigating some issues with our SVN externals in a project. Using TortoiseSVN I have made my way to the root directory of the project and selected ...
1
vote
1answer
40 views

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 ...
1
vote
1answer
36 views

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 ...
1
vote
0answers
918 views

How can I make Subversion ignore externals for future updates and status reports?

I'm working on a project which uses a tool developed in-house. It's convenient to have that tool's source code available while working on my project, so I ran svn propset svn:externals -F ...
1
vote
1answer
322 views

How to update Subversion externals

We have several subversion repositories: one for common code and one for each top level project. The top level projects have a svn:external link to the trunk of the common repository. Before we ...
1
vote
1answer
146 views

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?
1
vote
1answer
436 views

Create a client side hook script to prevent user commit to external in TortoiseSVN

My trunk has struct: \trunk ----\data ----\src ----\tool with \tool is external to another place, not in my trunk. So i don't want user commit to \tool in SVN. They can only commit to \data or \src. ...
1
vote
1answer
392 views

Point SVN Externals at a CVS Repository

Is it possible to point an SVN Externals directive at a CVS repository?
1
vote
2answers
820 views

can we set svn:external for a single file in debian

can we set svn:external for a single file in debian
1
vote
4answers
464 views

svn externals not working

I don't claim to know anything about svn, but I thought I understood how externals work. I'm making a new project and i want my lib folder to have an external to some other project (svn location). ...
1
vote
3answers
616 views

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 ...
1
vote
3answers
521 views

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 ...
0
votes
2answers
71 views

set up a local SVN with svn:external branch for merging (from scratch)

I wonder if it is possible to set up an SVN subversion system (btw, i'm on Ubuntu 11.10) for particular folder with two different sources and track changes simultaneously? The situation is the ...
0
votes
1answer
98 views

svn:externals accept relative paths?

I have SVN download automatically some projects from another part of the trunk to my current trunk location - i.e. sharing projects with SVN:Externals.... All is working work... But i have it hard ...
0
votes
3answers
102 views

Project properties lost on external checkout

Our company might be moving from CVS to Subversion soon. This has brought about an issue for us, which I am trying to solve. For CVS and Eclipse, we were able to use team project set files to gather ...
0
votes
1answer
69 views

Svn Externals, can you have files from externals that are mixed in with your regular working copy

I want to be able to have a working copy of a framework, then I want to have another repo for certain extensions where I pull those extensions into my framework with externals. The problem I see, ...
0
votes
1answer
137 views

Auto resolving references' path on project

I think I have misunderstood something about Visual Studio's project references or SVN:externals - maybe both :) -. The fact is that I have three projects: A has no references itself B refers to ...
0
votes
3answers
62 views

protect svn externals

I have a project in a svn with externals, for example - myproject | |--------stuff1 |--------stuff2 |--------external-lib // svn::external I need to add a file (a Makefile) inside the ...
0
votes
2answers
142 views

SVN externals - is there something between floating and pinned externals?

I know that people recommend that externals should always point to tags or be pinned to specific revisions (or both for the belts-and-braces brigade!). I'm comfortable with this approach when the ...
0
votes
1answer
301 views

Remove SVN external reference on repository

As part of my deployment scripts I do an svn copy from the trunk to the tags directory, which is in turn exported to our server. In a current project thats in development i'll be using svn externals ...
0
votes
2answers
198 views

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 this: DataAccessObject/ ...
0
votes
1answer
264 views

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 ...
0
votes
2answers
699 views

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

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 ...