254 questions
0
votes
1
answer
38
views
Is the hash for a Git submodule associated with the section key or with the path?
I'm doing something with git-filter-repo that is like the convert-svnexternals script here:
https://github.com/newren/git-filter-repo/blob/main/contrib/filter-repo-demos/convert-svnexternals
In that ...
1
vote
0
answers
33
views
How do I remove the externals propery of a folder in an SVN branch but retain the files?
I have a branch in my SVN repo that has one folder with externals. I wish to remove the externals property from that folder but retain the files in the folder so that I can change them without ...
1
vote
1
answer
417
views
Check SVN Folder externals via System Command Line
i currently try to access the list of all externals in a specific folder via the system command line.
I tried following follwing command:
TortoiseProc.exe /command: propget svn:externals -R
Can ...
0
votes
1
answer
224
views
How to propedit svn:externals in Windows7-cmd.exe?
In linux, we can use the following command to edit svn:externals
EXPORT SVN_EDITOR=vim
svn propedit svn:externals ./
but vim is no support in Windows7-cmd.exe, how can i edit svn:externals in ...
0
votes
0
answers
42
views
Create a shorcut with GIT into the same repository (similar to SVN externals)
We are migrating projects from SVN to GIT.
I have an issue.
In one of the SVN project, they used SVN externals in order to create shortcuts between modules like this :
-ModuleA
|_ srcA
-...
3
votes
1
answer
1k
views
Is there a way to automatically update the peg revision of an SVN external when commiting own changes?
I'm using TortoiseSVN (version 1.9.7) and just started using svn:externals. I want to use it to share some common functionality across different projects in the same repository. So the repo layout ...
2
votes
1
answer
181
views
Is there any way to help avoid accidental commits to svn:externals in TortoiseSVN?
I am on a development team with some members who have accidentally committed changes to svn:externals. If the externals in question are from a different repo, they get handled better in TortoiseSVN, ...
1
vote
0
answers
456
views
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 (...
0
votes
0
answers
46
views
Auto update externals revision
I am currently using externals to substitute symlinks in my repo, because I have working copies on Windows and Linux. The reason for this is that I want my code to build on both.
So I currently use ...
3
votes
1
answer
389
views
Export single file from SVN, possibly following externals
I need to export a single file from SVN. My structure might look like this:
- trunk
- file.py
- anotherfile.py
- folder
- stuff.py
- anotherfolder # <-- External!
- magic....
3
votes
1
answer
575
views
SVN merging changes to externals prop
Saving for prosperity as I didn't find anything through the google.
While starting up a project I needed to move some svn:externals properties around. Specifically a couple folders deeper than it ...
6
votes
0
answers
538
views
How to deal with partial svn:externals when migrating to Git?
I would like to import a SVN repository into a GitHub Enterprise repository
There are many questions related to this matter and most of them can be addressed either with Git submodules or Git subtree....
1
vote
1
answer
122
views
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 '...
6
votes
1
answer
1k
views
Migrate from svn to git keeping svn-externals
I am migrating from an svn repository to git.
This svn repository has svn-externals, to be kept on svn repositories. These external are versioned and tagged in the history, and are read only.
How I ...
2
votes
1
answer
566
views
How do you rename a local 'external' in TortoiseSVN?
I've recently added an external file to a directory that is being tracked in SVN. We're using tortoiseSVN. Typically when we add externals, we try to give it a prefix marking such that others know it'...
0
votes
1
answer
134
views
Replacing files in svn tree with an external reference results in delete/checkout conflict
I replaced files that originally existed in SVN repository with svn:externals references. Now every svn update deletes each file and checks it back out.
How do I fix this?
Details
With all code ...
1
vote
2
answers
1k
views
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 ...
2
votes
1
answer
276
views
Externals in VisualSVN Server
I'm using VisualSVNServer. I've a svn repo (say: test1) with externals (say: test2). Everything fine so far, when I checkout test1, test2 is automatically checked out to and placed inside my working ...
1
vote
2
answers
3k
views
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 ...
1
vote
0
answers
560
views
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 ...
1
vote
0
answers
26
views
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 ...
0
votes
1
answer
1k
views
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 ...
0
votes
1
answer
249
views
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 ...
2
votes
1
answer
5k
views
How to correctly set an external path on SVN?
I'm trying to set an external path on SVN. Here is what I do in SVN:
Right click on folder where I want an external
Select "Show Properties"
New -> Externals
In "Externals", I click New
At local path, ...
2
votes
1
answer
2k
views
Any way to specify the svn revision of externals in a Jenkins job?
Suppose I have such svn structure:
svn://myhost/repository_main
svn://myhost/repository_ext
The revision numbers of these two repositories are isolated.
Now I have set a svn:externals on svn://...