Questions tagged [externals]
84 questions
4
votes
4 answers
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 reasonable rule or do you see problems / issues with this…

Otávio Décio
- 73,752
- 17
- 161
- 228
3
votes
1 answer
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)
externals/ (this directory is not checked in; it is…

Chris
- 81
- 2
3
votes
1 answer
"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 third I believe are implementations of the subtree…

Paul Biggar
- 27,579
- 21
- 99
- 152
2
votes
1 answer
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 update only for the externals ?
Right now it does the…

Gabriel Solomon
- 29,065
- 15
- 57
- 79
2
votes
0 answers
react + jest pass setup environment to subcomponent
I am trying to set up test for my react app using jest and enzyme.
I have a component which depending on what kind of media it receives renders a different child component.
Like
render(){
var media;
var fileEnding =…

chicarrida
- 43
- 3
2
votes
1 answer
Is there any method to automatically load webpack external files?
I organize my frontend project with commonjs like var $ = require('jquery'); and use webpack to bundle entry js files. I can use webpack's "externals" to exclude some third-party libraries like jquery, angular or others into the final bundle and i…

RickWen
- 21
- 1
2
votes
2 answers
How do I use package aliases in Karma? (Example: $ for jquery)
My code depends on tons of other code, and is loaded last in the browser when running from the normal index.html-file. So of course when dependency 1 is jquery, and dependency 2 uses $.html(), and my code is loaded third, that works just fine in…

tofagerl
- 95
- 10
2
votes
1 answer
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 traditional svn checkout and build approach I add…

Mania
- 1,718
- 14
- 16
2
votes
0 answers
svn checkout and r-w for collection of subdirectories
I need to give read-write access for a non-engineering group to certain directories inside our repository. Ideally, I would like for them to only have to check out this collection of directories as well, as opposed to the whole tree (but that part…

tanager
- 189
- 2
- 10
2
votes
2 answers
"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 which should be uploaded to the servers and it…

John Doe
- 2,746
- 2
- 35
- 50
2
votes
1 answer
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 ExternalFolder and connect the 'externals' in the…

Guy
- 93
- 1
- 1
- 6
1
vote
0 answers
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 there are so many files from the other project…

Humppakäräjät
- 1,156
- 2
- 13
- 17
1
vote
1 answer
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 changes in all of my projects. In SVN, all I had…

Matt Zappitello
- 785
- 2
- 11
- 30
1
vote
3 answers
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 aborts at the first project that it cannot…

HUAGHAGUAH
- 1,836
- 10
- 7
1
vote
1 answer
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 when i change some file, every copy gets the …

Julio Faerman
- 13,228
- 9
- 57
- 75