26,681 questions
0
votes
0
answers
21
views
Can I trigger an nmake .mak file build target based on SVN revision?
I have a project in an SVN repository that is built with nmake on Windows. I have specified a mymak.mak file with a build target:
my_target: a_second_target a_third_target
... a build action ...
1
vote
1
answer
51
views
subversion upgrade BDB DB_VERSION_MISMATCH:
We are moving our very old subversion server to a new one. The old one was running on centos 7.7 with subversion 1.7.14-14.
We tried copying the entire repos folder to a new ubuntu 22 running ...
0
votes
1
answer
48
views
Migrating from SVN to Perforce but files in the repo have @ signs
I am attempting to migrate an existing Repo from SVN to Perforce and maintain the full history of files and edits. Have been trying to use the script svn2p4.pl and it seems to be working fine, until ...
-1
votes
3
answers
98
views
How to cut and splice two sequences of Git commits so that A-D and B-C become A-B-C-D?
We're migrating from SVN to Git using "git svn clone" followed by post-cleanup with some git-filter-repo scripts. So we're already rewriting history, and we don't need backwards interop ...
0
votes
1
answer
45
views
Clarification sought over TortoiseSVN merge tree vs merging range
I've read that when updating a branch I should use merge revisions, but to me it seems that merge tree is almost always the better choice for whatever you're doing.
I've always coded solo, but ...
0
votes
0
answers
30
views
How can the TeamCity workspace automatically switch to the SVN path when there is no new content in the SVN branch?
I have a teamcity build task that contains several vcs roots. When I branch the project (replace the svn address of one of the vcs), the workspace svn path on the agent does not switch automatically. ...
0
votes
0
answers
21
views
svn up of an existing file(which is moved to other file with some name.) is not happening
I have a file xyz.py in production
Performed svn co xyz.py (first time)
Did some changes or no-changes and later moved to xyz_old.py(mv xyz.py xyz_old.py)
Performed svn up xyz.py again. It is ...
0
votes
0
answers
68
views
SVN & LDAP configuration not working as expected
I'm trying to replace htaccess passwords with LDAP for a SVN deployment. I have 2 apache virtual hosts that point to the same SVN repository using different hostnames. The https://svn.dev.example.com ...
0
votes
0
answers
82
views
How to properly migrate SVN to Git with branches rooted in different directories?
The problem:
We need to migrate an SVN repository to Git. The problem arise when svn contains branches that are rooted in sub-folders:
Let suppose this example SVN with a simplified structure.
https://...
-1
votes
1
answer
33
views
Getting composer packages from local svn repository sub folder
Suppose a local svn repository Vendor has a subfolder tt containing multiple packages: core, core-analytics and so on. Each trunk folder for each package contains a composer.json file - naturally. ...
0
votes
1
answer
40
views
eclipse crashes with no output on "new repository location" using subversive
I have a really odd behaviour. Whenever I click on the "new Repository Location" Button in the "SVN Repository Explorer" my eclipse crashes with no further output. (I've checked ...
0
votes
2
answers
96
views
How to lock or prevent conflicts for a new file with SVN
We have a directory versioned in SVN (Subversion) and use svn lock to prevent conflicts when 2 users modify a file at the same time. However, when I create a new file and do svn lock newfile, then got ...
1
vote
1
answer
87
views
Tortoise SVN not recognising the repo
I recently got a new PC and I got all my documents back via OneDrive. This included my working copy of a SVN repo (including the .svn folder etc). I've now made various code mods but TortoiseSVN isn'...
0
votes
0
answers
231
views
Papyrus UML Diagram of class and sequence error
I am new to papyrus. I am using papyrus 6.7.0 for UML diagrams. I have created class and sequence diagram under one project. After I did the diagrams, I saved and committed in SVN repository. My ...
0
votes
0
answers
38
views
How does SVN client show message of SVN server hook post-commit command?
My svn server (Windows system) is VisualSVN, my svn client is TortoiseSVN.
I added bellow code in post-commit.cmd of VisualSVN.
echo (ignore "Error 99", which is a fake error, commit is ...
0
votes
0
answers
57
views
svn status --xml with -u and --depth=empty lost the entry block
When I run command svn status --depth=empty "H:/svn/UnityTest/Assets/ddd.meta",
the output is
<?xml version="1.0" encoding="UTF-8"?>
<status>
<target
...
0
votes
1
answer
95
views
Ignore undefined authors in git svn clone --authors-file command
We are migrating svn to git and some of the users in our svn are no longer with the company and have no corresponding account in our git repository.
Is there any way to ignore mapping of these users ...
0
votes
1
answer
86
views
git-svn places .git folder in the same directory as the project parent folder instead of source folder
I'm leading a subversion to git migration retaining history effort for a small team. The SVN repo has branches under APP/branches/dev, APP/branches/uat, and APP/trunk. **EDIT** the issue seems to ...
0
votes
0
answers
42
views
git svn integrate merge information of svn branches
My goal was to migrate svn to git and keep trunk and some directly diverged branch/A, plus their merge history. Additionally syncing between git and svn was required.
I already managed to create ...
0
votes
0
answers
32
views
Tortoise SVN loses svn:keywords property setting
I have a weird Tortoise SVN issue after setting up a new Windows 10 workstation.
I've got my project working copy (repo is on a local server, connecting using svn+ssh) checked-out fine, and normal ...
-1
votes
1
answer
72
views
Using delta algorithms in version control systems [closed]
I've been searching for different version control systems because I'm trying to develop a simple one for a CG studio. There are only a handful of tools out there that provide such services, Like ...
0
votes
0
answers
32
views
Authentication Error When Running SonarScanner with SVN
I’m encountering an issue while running SonarScanner in our Jenkins development pipeline. Here are the environment details:
SVN version: 1.14.1
Jenkins version: 2.426.3
Sonar Scanner version: 5.0.1....
2
votes
0
answers
831
views
error on eclipse after installing SVN Team Provider
[I installed Svn via the Ecplise marketplace.
When I go to Windows --> Prefereces-->Version Control (Team)--> Svn I get the following error
Unable to create the selected preference page.
org/...
2
votes
1
answer
124
views
Subversion status PowerShell non-ASCII characters problem
I have a weird thing going on in my PowerShell script using Subversion commands. Following is an PowerShell example script:
$svnOutput = svn status
Write-Host "Output when saved in a ...
0
votes
1
answer
105
views
subversion (SVN) (version control) plugin for Jira cloud
In the past, I used to work with jira server and "Subversion Integration for Jira" plugin for the version control (SVN).
Today, I want start using jira cloud (instead of Unfuddle and Monday....
3
votes
2
answers
4k
views
SVN Eclipse plugin (Subversive) Not working when I have upgraded to Eclipse 2024-12
I have upgraded eclipse from 2024-09 to 2024-12 with Subversive SVN Connectors 6.0.4.I20161211-1700 and Subversive SVN Team Provider 4.8.0.v20220904-1901; after upgrade I'm facing Many GUI errors..., ...
0
votes
0
answers
70
views
svnrdump: E175002: REPORT request on '/svn/repo' failed
I am trying to split up an old single, multi-project repository into multiple smaller repos, one repo per project. I do not have access to the physical machine on which either the backup or the split-...
0
votes
1
answer
39
views
SVN delete folder from client
I've following project structure and two users, user1 and user2.
/code/proj1
/code/proj2
user1 works on both the projects but user2 works only on proj2. My Path-Based access configuration is as ...
0
votes
0
answers
16
views
svn commit to externals location where local path has multiple levels of (unversioned) subfolders
I have noticed a strange issue with tortoise svn. I'm using externals and use local path to create a certain folder structure to organize these externals. However when I try to commit changes to those ...
0
votes
0
answers
24
views
Getting 403 when trying to access SVN repos using Apache dav_svn configuration
I have installed svn on an EC2 ubuntu server, hosted via apache2.
I have adjusted the /etc/apache2/mods-available/dav_svn.conf file with the following configuration:
<Location /svn>
DAV svn
...
0
votes
1
answer
62
views
how to access restriction by IP address (svn)
I want to restrict access to svn repository by ip address.
Added "require ip xx.xx.xx.xx/24" to [repository]conf/svnserve.conf
But used Tortoisesvn Repository Browser to see the repository, ...
0
votes
0
answers
29
views
Is there a way to merge two incremetal SVN dump files generated using svnrdump from two separate repositories, while preserving revision histories?
The situation is this. An SVN server migration was under way. At some point a new SVN server was set up but some users continued to make commits to the old server and some others to the new server (...
0
votes
1
answer
28
views
TortoiseSVN: Undo Commit with "Replaced" Files
In a recent SVN commit log several files are now marked as "Replacing" - the files have been deleted and re-added by the commit. This sounds odd, but I understand that this can happen after ...
0
votes
1
answer
81
views
SVN Invalid Authz Configuration
My SVN server was recently updated, and now when I try to connect to the repository in eclipse, I receive the below error:
Error validating location: "org.apache.subversion.javahl.ClientException:...
0
votes
1
answer
61
views
Clean up .svn folder where files already downloaded
I have downloaded some mp4 files from my svn repo.
However these files are taking up too much disk space, do I deleted them.
SVN still gives me the option to revert the changes.
Is there any way to ...
0
votes
0
answers
35
views
VisualSVN update hangs when running as background task
I have an SVN repo running on a windows server. As a regular task, I need to update a local version of the repo on an unattended server, to ensure that the latest working copy is held.
I have created ...
0
votes
1
answer
106
views
How to properly inform SVN about files moved outside of SVN control in Visual Studio?
I'm using Visual Studio 2019 with a Subversion repository. Sometimes files need to be moved to new locations through Visual Studio, but since SVN is not integrated into the IDE, it's not aware of ...
1
vote
1
answer
206
views
Version Control - TortoiseSVN (subversion) - Tunnels in ConfigDir config not Working
A tunnel in the [tunnels] section of the config file has no effect.
1. TortoiseSVN context menu -> Settings Dialog -> Advanced
Set ConfigDir to C:\example_dir
2. Edit config (file) in C:\...
0
votes
1
answer
68
views
SVN: Have multiple externals in project
I have a SVN repository that contains modules (source and header files), in a structure like:
modules
module1
mod1.c
mod1.h
module2
mod2.c
mod2.h
Now I want to link these modules as externals into ...
0
votes
0
answers
37
views
SVN Server repos location finding problem
I can connect to the SVN Server installed on Ubuntu using the command line because there is no GUI. My problem is that I don't know where the repos are stored in the svn system and I couldn't find it ...
3
votes
1
answer
87
views
Does a git equivalent of svn log --diff --diff-cmd= exist?
I'm exploring git after having used svn and am having difficulty finding an equivalent for svn log --diff --diff-cmd=meld to show the log and for each commit open the diff tool (here meld)
Does one ...
2
votes
1
answer
195
views
How do I update svn when using TortoiseSVN?
I've just installed TortoiseSVN v1.14.7, which is linked against the Subversion library 1.14.3. But when I do svn --version I get 1.6.6. Going to the Apache downloads page just links back to the ...
0
votes
0
answers
77
views
Subversion SWIG python3 bindings don't work om Alpine 3.17 or newer
Here is my situation:
FROM alpine:3.20
RUN apk --no-cache add --update --virtual .builddeps build-base python3-dev && \
apk add py3-subversion
When I execute the following line
python3 -...
0
votes
1
answer
36
views
How to read git svn internal config values
I want to read the svn-remote.svn.branches-maxRev config value.
Noticed that it is not in the .config file, but in <project>\.git\svn\.metadata
When I execute git svn clone command, I can see it ...
0
votes
0
answers
50
views
Keyword expansion in migration from SVN to GIT
I'm using svn-all-fast-export to migrate from SVN to git. Unfortunately it replaces all keywords like $Date: 2023-02-01 10:32:01 +0100 (Wed, 01 Feb 2023)$ to $Date$. Is there an option to surpress ...
1
vote
0
answers
20
views
issue doing SVN copy URL1 to URL2
I am attempting to perform an 'svn copy URL1 URL2' command. The exact syntax that I'm using is:
svn copy https://company_svn_server/sandbox/trunk \ https://company_svn_server/sandbox/branches/...
0
votes
1
answer
89
views
Username Case Sensitive Problem Of Subversion(SVN)
Environment
I'm using Subversion(1.14.1) and Ubuntu(22.04.4 LTS) as the server, TortoiseSVN(1.14.7) as the client.
Case
【Case1】
Yesterday, I have no user group on svn server. My passwd and authz files ...
1
vote
1
answer
71
views
How can I understand what was the last time that Repository is updated using VDFS on the VisualSVN slave server?
I did setup two servers which running VisualSVN Server. One is the master and the other is the slave.
I did enabled VisualSVN Distributed File System on server and my repositories in order to have a ...
0
votes
1
answer
44
views
Jenkins checks out svn repository adding folder '.svn' into each subfolder
We have recently installed new version of Jenkins, going from 1.638 to more recent 2.346.1. We didn't update, but went for a completely fresh installation.
We use Subversion Plug-in 2.15.5
It checks ...
0
votes
0
answers
36
views
Branching and Merging issues in SVN
We have a Prod, UAT, Emer_Fix branch which are static/permanent - meaning they never close and live forever.
We also have two TEST and a DEV branch which fit this same model.
Current Model:
1 ...