The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
62 views

Is the mergAccessory ios external intended only for printers?

In the documentation we have the following commands. command mergAccessoryRead pNameAndProtocol,pLength,pCallcackHandler command mergAccessoryWrite pNameAndProtocol,pData,pCallcackHandler Do they ...
1
vote
0answers
33 views

Subversion Externals Follow Symlink

Is there a way to use a symlink with the svn:externals property? I've a project running on my webserver (under unix) which has some folders that are actually symlink to other folders. When I add the ...
0
votes
1answer
47 views

Simulate repository subversion externals to git

I develop webprojects using subversion and I want to move to git. I have a lib folder (php files), a js folder (js files) and for each webproject a different directory (e.g project1) which has the ...
0
votes
0answers
79 views

bamboo does not checkout svn externals

I am using Subversion 1.6.6 (r40053) and Bamboo [Atlassian Confluence 4.3.3]. I have project which has svn external definition in the same repository. $ svn propget svn:externals . ...
1
vote
4answers
153 views

Static constructor in c++ and fatal error LNK1120: 1 unresolved externals

To start with i should probably let you know that i am by no means a programmer, and i'm just doing this for a homework assignment, so if it's possible i will require a really detailed explanation :) ...
1
vote
1answer
413 views

Remove svn:externals property from a folder

I have a branch of the trunk. I need to re-set the properties of the externals in the branch to a different point. My idea was to remove them all and re-set them with propset. When I type [svn propdel ...
3
votes
1answer
55 views

Branching Externals and Trunk together

I have' ExternalFolder' and 'trunk'in my SVN. 'trunk' has an empty folder linked to ExternalFolder (as written below). I want to create a script that will take branch the trunk, tag (or branch) the ...
1
vote
1answer
3k views

How to solve error LNK2019: unresolved external symbol

Such quite small program drives me crazy. I always get the following error messages: Error 1 error LNK2019: unresolved external symbol "public: class std::basic_string<char,struct ...
1
vote
1answer
185 views

Unresolved externals [Constructors] [duplicate]

Possible Duplicate: What is an undefined reference/unresolved external symbol error and how do I fix it? I have a problem with the Linker which I just can't solve.. Already tried anything I ...
1
vote
1answer
307 views

Tortoise SVN 1.6 externals single file

I have a scenario where i want to get documentation files from Documentation folder in SVN, and the pdf version only. Current the documentation folder has .doc and .pdf files The target folder is ...
0
votes
1answer
187 views

lib from VS2008 in Qt Creator

I'm migrating from VS2008 to Qt Creator (but still using msvc2008 compiler on Windows) and I have a library (.lib) compiled with VS2008. Now, in Qt Creator on Windows it doesn't link with my program, ...
0
votes
0answers
40 views

Unresolved externals error while calling static function

This is driving me absolutely nuts. I've tried everything I've found on other posts here, and nothing works... this should NOT be this complicated. #include <iostream> #include <iomanip> ...
0
votes
2answers
252 views

SVN externals (or similar) with shared files within a single tree?

So I have this dilemma I'm trying to solve. I am an indie game developer working on 6-7 client projects at any given time with the Unity game engine. The problem I'm experiencing is keeping my ...
1
vote
1answer
180 views

How to fetch a Subversion external without fetching all other directories and subdirectories

I have a Subversion repository called 'repo'. Inside of repo are trunk/ and branches/ directories. Within branches/ there are several dozen release branches, e.g. 1.0/, 1.1/. These branches/ ...
0
votes
3answers
142 views

How to link continuous integration to my latest sprint trunk?

Using a continuous integration on my project, I need to checkout the code from latest sprint from BAZAAR as bzr://path/to/myproject/sprint/123 As this path is changing repeatedly (for each sprint), ...
0
votes
1answer
172 views

Taglib unresolved external issues (FileRef)

So I'm attempting to use taglib in a project I'm working on, and can not seem to get past a few unresolved externals. To start, I downloaded the latest taglib release from github, and proceeded to ...
1
vote
0answers
161 views

Eclipse, svn:externals, hide externals from project explorer

I'm using Eclipse Indigo IDE + Subversive SVN plugin. The project I'm working on includes a lot of files and directories (150+) from an other project in the SVN repository using SVN:externals. Because ...
0
votes
1answer
178 views

How do I perform a Subversion update on my externals only?

We use Subversion for version control, and we share common code among projects using externals. Any given project looks something like this: project/ (svn:externals is set on this directory) ...
3
votes
1answer
558 views

Adapting svn:externals usage for move to Mercurial

We've got in a corporate environment an svn repository structure which looks like this: root libs shared_lib1 shared_lib2 private_lib public_code private_code where public_code is ...
0
votes
2answers
60 views

Linking projects in bazaar

I have some projects that need to include the source of another project. All projects are managed by revision control software. In fact, they are for now part of the same local bazaar repository. The ...
0
votes
2answers
110 views

How does one setup correlated subversion externals? Should one?

We have a couple of Zend_Framework applications that we'd like to keep in separate subversion repositories. However, these applications share the same database abstraction layer, and several of the ...
1
vote
1answer
563 views

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

Is there an GIT alternative for SVN Externals?

I currently use SVN to manage jboss server configurations and i need to have several copies of the same sub-directory in each working copy, but referencing the same directory on the server so that ...
1
vote
1answer
102 views

Keep PHP classes (Zend, PEAR) in Subversion?

I have two projects in the same Subversion repository. They both use some standard code/classes (Zend/PEAR/phpMyAdmin etc) for various things. The repo is organized like this: \shared\trunk - stuff ...
1
vote
1answer
66 views

svn: Is there a way to avoid extraneous re-loading of externals?

When I do an svn update, it reloads all the externals, even though I've given them all an explicit revision in svn:externals, and I haven't modified this property or the files in question. Is there a ...
1
vote
2answers
150 views

Weird TCL quirk

So I am very new and inexperienced to the ways of TCL programming. I wrote a script that calls a proc written by someone else, first removing the output file. It then does some additional logic I ...
1
vote
2answers
659 views

Checkout SVN externals to the root of the current WC

I'm trying to checkout a external repository to my current working copy. This is my setup: Current Working Copy D:\working_copy\ External Path D:\external_working_copy\uploads Then I setup ...
2
votes
1answer
279 views

“submodules” in git: braid or subtree or something else

To include a few external git repositories in my "main" repository, there are a few options: submodules braid subtree The first seems to be advised against by basically everybody. The second and ...
4
votes
3answers
951 views

What's the benefits of “svn:externals”?

I would not get to know svn:externals if I haven't run into the this page. So, I setup my working folder. Then mkdir lib/vendor svn add --parents lib/vendor svn ps svn:externals 'symfony ...
1
vote
2answers
437 views

Including links to external resources in Visual Studio 2010 Web project

I have a ASP.NET project which relies upon the FreeImage .NET wrapper. This is loaded using a reference to a external directory. The wrapper relies upon the FreeImage.dll being present to work ...
3
votes
2answers
353 views

Is it possible to peg a Mercurial subrepo to a specific revision (like svn:externals)?

I'm migrating a set of projects from Subversion to Mercurial. The projects currently use svn:externals to pull code from one into the others. I've been following the recommendation to point externals ...
2
votes
1answer
153 views

Svn externals and c# assemblies - incompatible?

something that should be so simple in .net seems to be oh-so-hard. I have a project called MyExtenders, containing a few simple extenders to basic types. Many projects use MyExtenders - and so in ...
12
votes
3answers
2k views

Don't show svn:externals in svn status

I've made one svn:external in my repository. Everything works fine, except the output of the svn status command. In the output there is lot of information I don't need: $ svn st X lib ...
0
votes
1answer
119 views

Is Subversion's 'Lazy Copy' still lazy when overwriting a previously deleted file?

Is Subversion's 'Lazy Copy' still lazy when overwriting a previously deleted file? I store my externals in a separate folder for each version: i.e say for dojo I'd have: webroot\ scripts\ ...
5
votes
3answers
712 views

svn externals … yes or no?

I've read a few answers on here that condemn the use of svn:externals. I do see how they can be misused, and it does make us more dependent on Subversion, but I really don't see our group moving away ...
0
votes
1answer
114 views

Add file from within an external project to a local project

I'm using the svn:external to get projects like Nlog and Lucene.net. They don't have a vs2008 csproj file. I can create that one easely so I can add it to other projects. Is it now possible to add ...
5
votes
5answers
562 views

Help in understanding SVN Externals

I'm looking into svn externals for my company, and it seems like it would be a good feature for us to use. We have several products that often reference shared components, but have a bad habit of ...
2
votes
2answers
868 views

“svn list” ignores externals

i have a directory called 'library' in my SVN tree which uses externals to load libs such as zend framework/smarty/.... im using a self written tool which uses "svn list" where i can select files ...
3
votes
4answers
2k views

Subversion - where should the svn:externals come from?

I am about to establish a rule at work here that all svn:externals references should come from the one of the other project's tag, never from its trunk or from any of its branches. Is this a ...
1
vote
3answers
675 views

SVN externals change source to target directory

I am using svn 1.6, is it possible to have: ? source directory shared\code\depends\make1.3 - contains file make.1.3 target directory trunk\make\ - i want make.1.3 in trunk\make\ Have an SVN ...
2
votes
1answer
262 views

Subversion hook updating externals autentification error

I have a post-commit hook that is updating a working copy. In that working copy some of the files are externals witch have authentication. Is there a way to pass the login credentials to the svn ...
3
votes
2answers
3k views

Relative path in Subversion externals definition doesn't work for me!

I know there is a question about relative paths in subversion, but it doesn't work for me. The error I get is: svn propset svn:externals "openscada_da_server_common ...
0
votes
5answers
223 views

which files not to add to the svn trunk?

Should i resolve myself to add third party and ajax libraries that i use in my project - tinyMCE editor for example (more than 1800 files) or fckEditor - when my project doesn't contain nearly as many ...
0
votes
2answers
425 views

svn:externals and permissions

I am running an svn project with optional components - pulling from several external repositories, and a number of users with varying access permissions to these externals. The 'svn update' command ...
44
votes
3answers
31k views

How to get started with svn:externals?

I'm looking for a succinct and well-written tutorial on using svn:externals. I already know how to use them in a basic way myself, but I want a good article that I can link to when answering ...
1
vote
3answers
1k 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 ...
5
votes
1answer
2k views

Subversion externals problem

I am new to SVN and make heavy use of the externals property. I have a repository located on my PC and the externals properties have a hardcoded 'localhost' in the name, which is now giving me ...
60
votes
4answers
8k 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 ...
5
votes
3answers
2k views

How to migrate all URLs in svn:externals properties across a repository?

We are in the process of moving our SVN repositories from one machine to another one, and with it will come a new domain name for the new repo. The problem is, that within the repository, there are ...