Re: SVN MFA

2025-04-28 Thread Andreas Stieger
using an Apache server, which is installed on a Windows server. We want to implement OTP. We are using Tortoise SVN to access the repositories.I'm checking to see how we can implement MFA. Thanks!Regards,PrasannaOn Tue, Apr 22, 2025 at 12:44 PM Prasu S <s.pr...@gmail.com> wrote:Thanks

Re: SVN MFA

2025-04-28 Thread Prasu S
Hello Andreas, We are using an Apache server, which is installed on a Windows server. We want to implement OTP. We are using Tortoise SVN to access the repositories.I'm checking to see how we can implement MFA. Thanks! Regards, Prasanna On Tue, Apr 22, 2025 at 12:44 PM Prasu S wrote: >

Re: svn status --xml with -u and --depth=empty lost the entry block

2025-04-28 Thread Daniel Sahlberg
Hi, Den sön 27 apr. 2025 kl 13:02 skrev Jian Wang : > Hi~ > I'm coding to use svn in my Unity project, and want find a way to get file > status > I've tried `svn status` command, in most cases it works well, > however when -u and --depth=empty are both enabled, the

Re: svn status --xml with -u and --depth=empty lost the entry block

2025-04-27 Thread Lorenz via users
Hi, hm, with depth=empty you're telling svn to only consider the root folder itself. In that case the entry tag would be empty ( and therefore perhaps omitted) in case there are no changes/updates regarding the folder. Lorenz -- Jian Wang wrote: >Hi~ >I'm coding to use svn in

svn status --xml with -u and --depth=empty lost the entry block

2025-04-27 Thread Jian Wang
Hi~ I'm coding to use svn in my Unity project, and want find a way to get file status I've tried `svn status` command, in most cases it works well, however when -u and --depth=empty are both enabled, the entry block is missing. The following is my test: Step 1 svn status --depth=emp

Re: SVN MFA

2025-04-24 Thread Jeffrey Walton
On Tue, Apr 22, 2025 at 11:49 AM Peter Balogh wrote: > > Andreas can you please share more about this? > I've been looking for a solution for this for a while, but I only found > hacks like when entering your password, also add your OTP at the end > every time you do an svn op

Re: SVN MFA

2025-04-22 Thread Peter Balogh
Hi, I have rather simple implementation plan, to handle a special response with a 2fa challenge in cli, or by opening a browser window for auth, than storing the session cookie next to usual svn credentials I wrote up my plans in the dev mailing list, I'm happy to further discuss it, bef

Re: SVN MFA

2025-04-22 Thread Prasu S
Thanks Andreas for your quick response. Does Apache Subversion support organisation MFA or external MFA? We are using Tortoise SVN to access the repositories. Is it possible to set up MFA through Tortoise SVN? Thanks On Tue, Apr 22, 2025 at 11:29 AM Andreas Stieger wrote: > Hello, >

Re: SVN MFA

2025-04-22 Thread Mark Phippard
Supporting this from a CLI is next to impossible. I would look at how it is done with Git and see if it is possible to make the SVN CLI directly use the Git Credential Manager: https://github.com/git-ecosystem/git-credential-manager You would then need to work backwards from there to an Apache

Re: SVN MFA

2025-04-22 Thread Peter Balogh
Hi, Andreas can you please share more about this? I've been looking for a solution for this for a while, but I only found hacks like when entering your password, also add your OTP at the end every time you do an svn operation Is a modern OTP or Oauth authentication possible with httpd an

Re: SVN MFA

2025-04-22 Thread Peter Balogh
ersion Users Support, Our team is using SVN as a version control tool for source code. We are looking into implementing MFA. Does SVN have built-in MFA capabilities? If so, can you please point me to the documentation? I appreciate any help you can provide. Thanks, Prasanna

Re: SVN MFA

2025-04-22 Thread Andreas Stieger
Hello, On 2025-04-22 16:37, Prasu S wrote: Our team is using SVN as a version control tool for source code. We are looking into implementing MFA. Does SVN have built-in MFA capabilities? If so, can you please point me to the documentation? I appreciate any help you can provide. Apache

SVN MFA

2025-04-22 Thread Prasu S
Hello Subversion Users Support, Our team is using SVN as a version control tool for source code. We are looking into implementing MFA. Does SVN have built-in MFA capabilities? If so, can you please point me to the documentation? I appreciate any help you can provide. Thanks, Prasanna

Re: I think I found a Bug on SVN Cleanup

2025-04-19 Thread Branko Čibej
On 17. 4. 25 22:51, Jan Kohlmeyer wrote: Hi Nathan, * Which directory are you in when you run "svn cleanup --remove-unversioned --include-externals"? I am in the root directory of the repository. Did you mean "in the root directory of the working copy"? Subver

AW: [EXT] Re: [EXT] Re: I think I found a Bug on SVN Cleanup

2025-04-17 Thread Jan Kohlmeyer
Hi Nathan, * Which directory are you in when you run "svn cleanup --remove-unversioned --include-externals"? I am in the root directory of the repository. * If you are in that same directory (the one where you run the cleanup command) and you run "svn status",

Re: [EXT] Re: I think I found a Bug on SVN Cleanup

2025-04-17 Thread Nathan Hartman
On Thu, Apr 17, 2025 at 9:59 AM Jan Kohlmeyer wrote: > Hi Daniel, > > > >- What will be deleted? > > > > the external Folder in my Repo will be deleted. > > If I have > > > Path: a/b/c > > Url: ^/../OtherDir > > > > And do svn cle

AW: [EXT] Re: I think I found a Bug on SVN Cleanup

2025-04-17 Thread Jan Kohlmeyer
Hi Daniel, * What will be deleted? the external Folder in my Repo will be deleted. If I have > Path: a/b/c > Url: ^/../OtherDir And do svn cleanup --include-externals it will not be updated and with svn cleanup --remove-unversioned --include-externals, the Directory ‚c‘ will be dele

Re: I think I found a Bug on SVN Cleanup

2025-04-17 Thread Daniel Sahlberg
Den ons 16 apr. 2025 kl 23:27 skrev Nathan Hartman : > On Wed, Apr 16, 2025 at 9:38 AM Jan Kohlmeyer > wrote: > > > > Hi, I think I found a Bug on SVN Cleanup: > > > > > > > > * What steps led to the issue: > > > > > > > > I have

Re: I think I found a Bug on SVN Cleanup

2025-04-16 Thread Nathan Hartman
On Wed, Apr 16, 2025 at 9:38 AM Jan Kohlmeyer wrote: > > Hi, I think I found a Bug on SVN Cleanup: > > > > * What steps led to the issue: > > > > I have an Repository with externals. > > One external has a depth of three directorys: > > Path: Dir1/Di

I think I found a Bug on SVN Cleanup

2025-04-16 Thread Jan Kohlmeyer
Hi, I think I found a Bug on SVN Cleanup: * What steps led to the issue: I have an Repository with externals. One external has a depth of three directorys: Path: Dir1/Dir2/Dir3 Url: ^/../OtherDir Run cleanup with include-externals, e.g. with include-externals and remove-unversioned svn cleanup

Re: svn unlock all files locked by a specific user

2025-03-24 Thread Branko Čibej
On 19. 3. 25 19:10, Sean McBride wrote: Hi all, Is there an easy way to force unlock all files currently locked by a specific user? Consider an employee that leaves, and needing to then unlock anything she still had locked. You'll have to script it. You can use 'svn ls -R -v U

Re: svn unlock all files locked by a specific user

2025-03-19 Thread Sean McBride
Thanks to you both. I ended up doing this on the server: ``` svnadmin lslocks /usr/local/repositories/reponame/ | grep -B3 "Owner: alice" | grep "Path: " | sed 's/^Path: \//svn unlock --force "/' | sed 's/$/"/' > ~/svnunlock.sh ``` t

Re: svn unlock all files locked by a specific user

2025-03-19 Thread Andreas Stieger
On 2025-03-19 19:10, Sean McBride wrote: Is there an easy way to force unlock all files currently locked by a specific user? It's easy enough to get a full list: https://svnbook.red-bean.com/nightly/en/svn.advanced.locking.html#svn.advanced.locking.break-steal grep -B3 [...], grep, awk/cu

svn unlock all files locked by a specific user

2025-03-19 Thread Sean McBride
Hi all, Is there an easy way to force unlock all files currently locked by a specific user? Consider an employee that leaves, and needing to then unlock anything she still had locked. Thanks, Sean

Svn-1.14.3 and svn1.14.5 segfault using 32-bit x86, but not on 64-bit x86_64

2025-03-11 Thread John Frankish
Svn-1.14.3 and svn1.14.5 segfault using 32-bit x86, but not on 64-bit x86_64 using the same distro (tinycorelinux) and the same machine. Building from source using: CC="gcc -ggdb" CXX="g++ -ggdb" ./configure --prefix=/usr/local -disable-static --localstatedir=/var --wi

Re: Svn-1.14.3 and svn1.14.5 segfault using 32-bit x86, but not on 64-bit x86_64

2025-03-10 Thread Branko Čibej
On 10. 3. 25 13:45, John Frankish wrote: Svn-1.14.3 and svn1.14.5 segfault using 32-bit x86, but not on 64-bit x86_64 using the same distro (tinycorelinux) and the same machine. Building from source using: CC="gcc -ggdb" CXX="g++ -ggdb" ./configure --prefix=/usr/l

Re: Svn-1.14.3 and svn1.14.5 segfault using 32-bit x86, but not on 64-bit x86_64

2025-03-10 Thread Branko Čibej
On 10. 3. 25 13:45, John Frankish wrote: Svn-1.14.3 and svn1.14.5 segfault using 32-bit x86, but not on 64-bit x86_64 using the same distro (tinycorelinux) and the same machine. Building from source using: CC="gcc -ggdb" CXX="g++ -ggdb" ./configure --prefix=/usr/l

Re: Svn-1.14.3 and svn1.14.5 segfault using 32-bit x86, but not on 64-bit x86_64

2025-03-10 Thread Branko Čibej
On 10. 3. 25 20:09, Branko Čibej wrote: On 10. 3. 25 13:45, John Frankish wrote: Svn-1.14.3 and svn1.14.5 segfault using 32-bit x86, but not on 64-bit x86_64 using the same distro (tinycorelinux) and the same machine. Building from source using: CC="gcc -ggdb" CXX="g++ -gg

Re: Seeking Feedback on SVNPlus.com – A modern SVN Solution

2025-03-05 Thread Peter Balogh
, and support informed me that: "Pull Requests are not supported for SVN repositories" We're using Assembla for a couple projects, and it's regularly broken, a few months ago we could not review or merge anything for a week. We had cases where what we reviewed is not what go

Re: Seeking Feedback on SVNPlus.com – A modern SVN Solution

2025-03-05 Thread Justin MASSIOT
Hello Peter, Always great to hear fresh initiatives around Subversion :-) Some years ago, I was actively looking for such a tool. And even now that Git is all over the place, I'm convinced that SVN has a role to play. [1] And because Phabricator has winded down, I finally chose *RhodeCode*

Seeking Feedback on SVNPlus.com – A modern SVN Solution

2025-03-05 Thread Peter Balogh
Hi SVN Users! I'm Peter, and I'm excited to hear your feedback on *svnplus.com*, our new project to address the challenges we faced with SVN before. In our search for an svn solution for our own projects, we encountered several common issues with existing tools: • *Security*:

Re: Inquiry for SVN server

2025-02-03 Thread Daniel Sahlberg
Den mån 3 feb. 2025 kl 12:41 skrev Bhagyashri Narule < bhagyashri.nar...@titagarh.in>: > Hello Apache SVN Team, > > I hope this email finds you well. I am reaching out to inquire about > setting up a *locally hosted SVN server* for our team. We require a > solution that su

Inquiry for SVN server

2025-02-03 Thread Bhagyashri Narule
Hello Apache SVN Team, I hope this email finds you well. I am reaching out to inquire about setting up a locally hosted SVN server for our team. We require a solution that supports remote access, user authentication, and version control for software development projects. Could you please

RE: SVN Invalid Authz Configuration

2024-11-26 Thread Latoya A. Green via users
<mailto:latoya.gr...@us.abb.com> abb.com<https://www.abb.com/> From: Daniel Sahlberg Sent: Tuesday, November 26, 2024 1:23 AM To: Latoya A. Green Cc: users@subversion.apache.org Subject: Re: SVN Invalid Authz Configuration BeSecure! This email comes from outside of ABB. Make sure yo

Re: SVN Invalid Authz Configuration

2024-11-25 Thread Daniel Sahlberg
Den tis 26 nov. 2024 kl 01:21 skrev Latoya A. Green via users < users@subversion.apache.org>: > My SVN server was recently updated, and now when I try to connect to the > repository in eclipse, I receive the below error: > > > > &q

SVN Invalid Authz Configuration

2024-11-25 Thread Latoya A. Green via users
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: Can't create session svn: Unable to connect to a repository at URL 'svn://sv

Re: Fwd: SVN error massage (cleanup.c)

2024-11-19 Thread Andreas Stieger
On 2024-11-19 09:21, juhee heo wrote: -Blue screen error message: "IRQL_NOT_LESS_OR_EQUAL", "amoncdw8.sys" AhnLab Network Filter Driver, Level 4 (AMD64) See if can update or remove this security product. Nothing that userspace does should be able to crash the system. Andreas

Fwd: SVN error massage (cleanup.c)

2024-11-19 Thread juhee heo
-- Forwarded message - 보낸사람: juhee heo Date: 2024년 11월 19일 (화) 오후 5:13 Subject: SVN error massage (cleanup.c) To: Hello, I often get a blue screen when receiving updates. This mostly happens when there are a lot of files receiving updates, and when you clean up after rebooting

Re: svn log gives E130003: Malformed XML via DAV

2024-10-19 Thread Daniel Sahlberg
On 2024/10/01 14:00:54 Franz Sirl wrote: (snip) > PS: While investigating that I found a small cosmetic bug in the > prototype (fortunately the code follows the definition) for do_logs() in > subversion/libsvn_repos/log.c: > ``` > Index: subversion/libsvn_repos/log.c > ===

svn update consumes a lot of data on directory rename

2024-10-12 Thread Vincent Lefevre
I did a "svn update" (svn+ssh scheme) over a mobile connection, and this consumed several dozens of MB, while there were actually very little changes. There was a rename of a directory with large files, and I suspect that this was the cause. I thought that the system of "cheap co

Bug Report -- Assertion Failure `svn merge` on 1.14.3 from Ubuntu 24.04

2024-10-10 Thread Eri Kjeldergaard
kout a repo svnadmin create /tmp/test_repo svn co file:///tmp/test_repo test_checkout cd test_checkout # stage the conflicts ## stage the skeleton svn mkdir trunk branches svn ci -m 'seed directories' svn cp trunk branches/a svn ci -m 'create branch a' ## stage changes in trunk

Re: svn log gives E130003: Malformed XML via DAV

2024-10-04 Thread Franz Sirl
Hi Nathan, after further checking it turns out the failure mode I see is exactly the same like issue 4856, only you need to use --verbose and http to see it (`r` is the repository like created by `repro-4856.sh`): ``` > svn log --xml --verbose --use-merge-history -r 9:10 http://svn/r

Re: svn log gives E130003: Malformed XML via DAV

2024-10-03 Thread Franz Sirl
Am 2024-10-02 um 17:10 schrieb Franz Sirl: So I came up with the attached tentative and so far untested patch. I'm currently building packages and will test them as soon as build is finished. Unfortunately the patch is just papering over the real bug. The XML error is gone, but the transferre

Re: svn log gives E130003: Malformed XML via DAV

2024-10-02 Thread Franz Sirl
og-item. With a http:// URL the command fails midway while outputting the XML resulting in a truncated file (2.8M size). With a file:// URL the XML is 5.4M in size and passes (with --incremental removed) a validity check with `jing -c subversion/svn/schema/log.rnc`. After thinking about it some mo

Re: svn log gives E130003: Malformed XML via DAV

2024-10-02 Thread Nathan Hartman
On Wed, Oct 2, 2024 at 10:02 AM Nathan Hartman wrote: > > On Tue, Oct 1, 2024 at 10:03 AM Franz Sirl > wrote: > > > > Hi, > > > > recently this svn log command started to fail like that: > > > > ``` > > > svn log --xml --verbose --search @ -

Re: svn log gives E130003: Malformed XML via DAV

2024-10-02 Thread Nathan Hartman
On Tue, Oct 1, 2024 at 10:03 AM Franz Sirl wrote: > > Hi, > > recently this svn log command started to fail like that: > > ``` > > svn log --xml --verbose --search @ --use-merge-history --incremental > --revision 172342:{2024-09-30} > http://svn/svn/project/branch

svn log gives E130003: Malformed XML via DAV

2024-10-01 Thread Franz Sirl
Hi, recently this svn log command started to fail like that: ``` > svn log --xml --verbose --search @ --use-merge-history --incremental --revision 172342:{2024-09-30} http://svn/svn/project/branches/cd/2024_09 >/dev/null svn: E175009: The XML response contains invalid XML svn: E

RE: [EXTERNAL] Re: svn checkout Hangs/Crashes/Succeeds Over HTTP

2024-09-26 Thread Williams, James P. {Jim} (JSC-CD4)[KBR Wyle Services, LLC] via users
> This may be a silly question, but has hardware been checked? I would > start by checking: network wiring to the machine; the machine's RAM. I don't mind silly; I'm just that desperate. I'll do what I can to check those things, but given that I've seen the same results with the test server on a

Re: [EXTERNAL] Re: svn checkout Hangs/Crashes/Succeeds Over HTTP

2024-09-26 Thread Nathan Hartman
On Thu, Sep 26, 2024 at 4:57 PM Williams, James P. {Jim} (JSC-CD4)[KBR Wyle Services, LLC] via users wrote: > > I was pulled away from this problem, so I quoted our last exchange. Daniel, > you asked to test svn co but keeping communications entirely on the server > machine. I

RE: [EXTERNAL] Re: svn checkout Hangs/Crashes/Succeeds Over HTTP

2024-09-26 Thread Williams, James P. {Jim} (JSC-CD4)[KBR Wyle Services, LLC] via users
I was pulled away from this problem, so I quoted our last exchange. Daniel, you asked to test svn co but keeping communications entirely on the server machine. I did that by using an https://localhost URL. I also had to turn off Kerberos authentication, use "Require all granted"

Re: Issue with SVN Checkout Due to Malformed XML Response

2024-09-10 Thread Daniel Sahlberg
Den tis 10 sep. 2024 kl 22:20 skrev 耗子 : > Dear Subversion Development Team, > I hope this message finds you well. > I am encountering a critical issue when attempting to check out a specific > revision from the WordPress SVN repository. The command I used is: > > svn checkout

Issue with SVN Checkout Due to Malformed XML Response

2024-09-10 Thread 耗子
Dear Subversion Development Team, I hope this message finds you well. I am encountering a critical issue when attempting to check out a specific revision from the WordPress SVN repository. The command I used is: svn checkout -r 2983085 https://plugins.svn.wordpress.org/acymailing-integration-for

Re: Deletion of Branches(Folder and Files) from SVN server

2024-09-08 Thread Blake McBride
Same answer! On Sun, Sep 8, 2024 at 4:46 AM Nico Kadel-Garcia wrote: > On Fri, Sep 6, 2024 at 7:59 PM Blake McBride wrote: > > > > On Tue, Jul 9, 2024 at 6:42 AM Nico Kadel-Garcia > wrote: > >> > >> > >> There is a time where the "immutable history" becomes too expensive. > >> Spending skull

Re: Deletion of Branches(Folder and Files) from SVN server

2024-09-08 Thread Nico Kadel-Garcia
On Fri, Sep 6, 2024 at 7:59 PM Blake McBride wrote: > > On Tue, Jul 9, 2024 at 6:42 AM Nico Kadel-Garcia wrote: >> >> >> There is a time where the "immutable history" becomes too expensive. >> Spending skull sweat trying to work past the inability to delete >> obsolete branches or commits also be

Re: Deletion of Branches(Folder and Files) from SVN server

2024-09-06 Thread Blake McBride
On Tue, Jul 9, 2024 at 6:42 AM Nico Kadel-Garcia wrote: > > There is a time where the "immutable history" becomes too expensive. > Spending skull sweat trying to work past the inability to delete > obsolete branches or commits also becomes overwhelming. At some point, > at least with Subversion,

Re: Deletion of Branches(Folder and Files) from SVN server

2024-07-09 Thread Nico Kadel-Garcia
On Tue, Jul 9, 2024 at 6:13 AM Bo Berglund wrote: > > On Tue, 2 Jul 2024 20:39:12 +0530, Roshan Pardeshi > wrote: > > >We require to delete the branches(folder and files) from SVN server to > >release some space from disk as we are facing space crunch on disk in SVN >

Re: Deletion of Branches(Folder and Files) from SVN server

2024-07-09 Thread Bo Berglund
On Tue, 2 Jul 2024 20:39:12 +0530, Roshan Pardeshi wrote: >We require to delete the branches(folder and files) from SVN server to >release some space from disk as we are facing space crunch on disk in SVN >server. Following this discussion it seems like the best approach would

Re: Deletion of Branches(Folder and Files) from SVN server

2024-07-09 Thread Andreas Stieger
Hello, On 2024-07-02 17:09, Roshan Pardeshi wrote: We require to delete the branches(folder and files) from SVN server to release some space from disk as we are facing space crunch on disk in SVN server. Please help on this as what command we should use to delete the branches(folder and files

Re: Deletion of Branches(Folder and Files) from SVN server

2024-07-06 Thread Nico Kadel-Garcia
On Fri, Jul 5, 2024 at 9:29 AM Nathan Hartman wrote: > On Fri, Jul 5, 2024 at 6:59 AM Daniel Sahlberg < > daniel.l.sahlb...@gmail.com> wrote: > >> Den fre 5 juli 2024 kl 12:44 skrev Roshan Pardeshi < >> roshan.parde...@ncdex.com>: >> >>> Hello Nathan/ Team, >>> >>> Waitng for your revert on trail

Re: Deletion of Branches(Folder and Files) from SVN server

2024-07-05 Thread Nathan Hartman
tizer_SafeHtmlFilter_> >> roshan.parde...@ncdex.com >> <https://mail.google.com/mail/?view=cm&fs=1&to=roshan.parde...@ncdex.com> >> /as...@ncdex.com >> <https://mail.google.com/mail/?view=cm&fs=1&to=as...@ncdex.com> >> Toll-free number 1800 266 2339 / 1800 103 4861 >> <#m_4205676612975724340_m_262593516953184

Re: Deletion of Branches(Folder and Files) from SVN server

2024-07-05 Thread Daniel Sahlberg
> > Toll-free number 1800 266 2339 / 1800 103 4861 > <#m_5264752297521101632_SignatureSanitizer_SafeHtmlFilter_> > > > > On Wed, Jul 3, 2024 at 7:46 PM Roshan Pardeshi > wrote: > >> Hello Nathan, >> >> Please find the inputs below inline. >> >

Re: Deletion of Branches(Folder and Files) from SVN server

2024-07-05 Thread Roshan Pardeshi
ncdex.com>/ as...@ncdex.com <https://mail.google.com/mail/?view=cm&fs=1&to=as...@ncdex.com> Toll-free number 1800 266 2339 / 1800 103 4861 <#SignatureSanitizer_SafeHtmlFilter_> On Wed, Jul 3, 2024 at 7:46 PM Roshan Pardeshi wrote: > Hello Nathan, > > Please find

Re: Deletion of Branches(Folder and Files) from SVN server

2024-07-03 Thread Lorenz via users
Hi, Roshan Pardeshi wrote: >Hello Nathan, > >Please find the inputs below inline. > >What version of Subversion is used on the server? *svn, version 1.7.14 >(r1542130)* > >How big is the repository? --- *1.5 TB* > >How many revisions in the repository?

Re: Deletion of Branches(Folder and Files) from SVN server

2024-07-03 Thread Roshan Pardeshi
Hello Nathan, Please find the inputs below inline. What version of Subversion is used on the server? *svn, version 1.7.14 (r1542130)* How big is the repository? --- *1.5 TB* How many revisions in the repository? --- *Please confirm how to and where to find revisions in the

Re: Deletion of Branches(Folder and Files) from SVN server

2024-07-02 Thread Nathan Hartman
On Tue, Jul 2, 2024 at 11:23 AM Roshan Pardeshi wrote: > Hello, > > We require to delete the branches(folder and files) from SVN server to > release some space from disk as we are facing space crunch on disk in SVN > server. > > Please help on this as what command we sho

Deletion of Branches(Folder and Files) from SVN server

2024-07-02 Thread Roshan Pardeshi
Hello, We require to delete the branches(folder and files) from SVN server to release some space from disk as we are facing space crunch on disk in SVN server. Please help on this as what command we should use to delete the branches(folder and files). We have used below command but its not

Re: Migration from CentOS 7, Subversion 1.94 to Ubuntu 24.04, SVN 1.14.3

2024-06-19 Thread Paul Leo
you use TortoiseSVN, the other option would be to remove the .svn folder and do a new checkout in the same directory. TortoiseSVN is quite nice that it picks up the existing files and says "Versioned" on them and you can usually continue as before. The command line client seems t

Re: Migration from CentOS 7, Subversion 1.94 to Ubuntu 24.04, SVN 1.14.3

2024-06-19 Thread Nico Kadel-Garcia
On Wed, Jun 19, 2024 at 3:31 AM Andreas Stieger wrote: > > > On 2024-06-18 23:19, Paul Leo wrote: > > If I try a relocate in TortoiseSVN, I get an error saying the uuid of > > the new server is different than the WC of the local repo. I presume > > this is because of the DNS name change. > > > N

Re: Migration from CentOS 7, Subversion 1.94 to Ubuntu 24.04, SVN 1.14.3

2024-06-19 Thread Daniel Sahlberg
diff folders if needed) > instead of trying relocate, or should I have them edit the wc.db and > replace or try and change the uuid on the new server to match the old one. > Since you use TortoiseSVN, the other option would be to remove the .svn folder and do a new checkout in the same d

Re: Migration from CentOS 7, Subversion 1.94 to Ubuntu 24.04, SVN 1.14.3

2024-06-19 Thread Andreas Stieger
On 2024-06-18 23:19, Paul Leo wrote: If I try a relocate in TortoiseSVN, I get an error saying the uuid of the new server is different than the WC of the local repo.   I presume this is because of the DNS name change. No, this is because the UUID is different. I've done some searching and

Re: Migration from CentOS 7, Subversion 1.94 to Ubuntu 24.04, SVN 1.14.3

2024-06-18 Thread Paul Leo
Thanks Ryan.  I guess I can't believe everything on the internet, where I got the DNS name story The commands used to create and sync the repo were: svnsync initialize file:///srv/svn_repos/ibis/main https://svn.ibisph.org/svn/main svnsync synchronize file:///srv/svn_repos/ibis/main

Re: Migration from CentOS 7, Subversion 1.94 to Ubuntu 24.04, SVN 1.14.3

2024-06-18 Thread Ryan Carsten Schmidt
On Jun 18, 2024, at 16:19, Paul Leo wrote: > > If I try a relocate in TortoiseSVN, I get an error saying the uuid of the new > server is different than the WC of the local repo. I presume this is > because of the DNS name change. The DNS name has nothing to do with the UUID. If the new repos

Re: Migration from CentOS 7, Subversion 1.94 to Ubuntu 24.04, SVN 1.14.3

2024-06-18 Thread Paul Leo
shutdown, (and diff folders if needed) instead of trying relocate, or should I have them edit the wc.db and replace or try and change the uuid on the new server to match the old one. I've done some reading in the SVN-redbook, but am concerned that perhaps there are things that I may be mi

Re: SVN over NFS/CIFS (Windows client to Linux server)

2024-06-18 Thread Daniel Sahlberg
Den tis 18 juni 2024 kl 17:49 skrev Johnston, Tim < tim.johns...@christiedigital.com>: > We are using SVN 1.7 repositories which are checked out to a Linux file > server. Users access their files via TortoiseSVN (1.7.15, which is also > built against SVN 1.7.x), either via CIFS or

SVN over NFS/CIFS (Windows client to Linux server)

2024-06-18 Thread Johnston, Tim
We are using SVN 1.7 repositories which are checked out to a Linux file server. Users access their files via TortoiseSVN (1.7.15, which is also built against SVN 1.7.x), either via CIFS or NFS. When accessing via CIFS (with the Linux side serving via Samba), we occasionally encounter SQLite

Re: Migration from CentOS 7, Subversion 1.94 to Ubuntu 24.04, SVN 1.14.3

2024-06-07 Thread Paul Leo
rwise, I will create new user/passwords.  The community is small enough so that this should not be an issue. On 6/7/2024 2:16 AM, Daniel Sahlberg wrote: Den tors 6 juni 2024 kl 21:40 skrev Paul Leo : We need to migrate an SVN repository from CentOS 7, Subversion 1.94 to Ubuntu

Re: Migration from CentOS 7, Subversion 1.94 to Ubuntu 24.04, SVN 1.14.3

2024-06-07 Thread Paul Leo
Data Warehouse who contracts with the Hawaii Dept of Health. Currently the content is stored in the SVN repository hosted in UT.  That server is managed by UT Dept of HHS, and because of state security I am not permitted to have login access to that server.  That server is scheduled to be turn

Re: Migration from CentOS 7, Subversion 1.94 to Ubuntu 24.04, SVN 1.14.3

2024-06-07 Thread Nico Kadel-Garcia
On Fri, Jun 7, 2024 at 1:31 AM Lorenz via users wrote: > > Paul Leo wrote: > > >We need to migrate an SVN repository from CentOS 7, Subversion 1.94 to > >Ubuntu 24.04, SVN 1.14.3. > > > >We don't have any login access to the current server. > > >

Re: Migration from CentOS 7, Subversion 1.94 to Ubuntu 24.04, SVN 1.14.3

2024-06-07 Thread Daniel Sahlberg
Den tors 6 juni 2024 kl 21:40 skrev Paul Leo < paul@dataphilesconsulting.com>: > We need to migrate an SVN repository from CentOS 7, Subversion 1.94 to > Ubuntu 24.04, SVN 1.14.3. > > We don't have any login access to the current server. > > The current hosting s

Re: Migration from CentOS 7, Subversion 1.94 to Ubuntu 24.04, SVN 1.14.3

2024-06-07 Thread Andreas Stieger
Hello, On 2024-06-06 21:40, Paul Leo wrote: [...] migrate an SVN repository from CentOS 7, Subversion 1.94 to Ubuntu 24.04, SVN 1.14.3. [...] The current hosting server plans to perform an SVN dump of the repository, and make it available through something like Google Drive. We would obtain

Re: Migration from CentOS 7, Subversion 1.94 to Ubuntu 24.04, SVN 1.14.3

2024-06-06 Thread Ryan Carsten Schmidt
On Jun 7, 2024, at 00:32, Lorenz via users wrote: > > You might want to retain the repository UUID, otherwise you would need > to re-checkout your working copies Loading the dumpfile into a new repository will preserve the UUID unless you tell it not to.

Re: Migration from CentOS 7, Subversion 1.94 to Ubuntu 24.04, SVN 1.14.3

2024-06-06 Thread Lorenz via users
Paul Leo wrote: >We need to migrate an SVN repository from CentOS 7, Subversion 1.94 to >Ubuntu 24.04, SVN 1.14.3. > >We don't have any login access to the current server. > >The current hosting server plans to perform an SVN dump of the >repository, and make it availa

Migration from CentOS 7, Subversion 1.94 to Ubuntu 24.04, SVN 1.14.3

2024-06-06 Thread Paul Leo
We need to migrate an SVN repository from CentOS 7, Subversion 1.94 to Ubuntu 24.04, SVN 1.14.3. We don't have any login access to the current server. The current hosting server plans to perform an SVN dump of the repository, and make it available through something like Google Drive.

When performing an SVN update operation on a file that does not exist locally, how the changeset is used.

2024-06-06 Thread ????
hope for an answer, thanks very very very much. 798603...@qq.com  

Re: [EXTERNAL] Re: svn checkout Hangs/Crashes/Succeeds Over HTTP

2024-06-02 Thread Daniel Sahlberg
t would explain the symptoms > you're seeing (client hangs waiting for network (and sometimes > crashes), server has nothing to do and doesn't report anything > special). > I agree with Johan and I understand it might be hard to nail down the actual issue. I don't think I

Re: SVN issue - Repository - not able to login

2024-05-28 Thread Roshan Pardeshi
Hello Daniel, We have checked from below link but not find the solution. If we create a new repository named as *Utilities *that repository is getting created but when user is trying to login that repository by using URL as - *svn://192.168.213.190/SVN/Utilities <http://192.168.213.190/

Re: SVN issue - Repository - not able to login

2024-05-27 Thread Daniel Sahlberg
Den mån 27 maj 2024 kl 14:50 skrev Roshan Pardeshi < roshan.parde...@ncdex.com>: > Hello Daniel, > > We are using below mentioned path for access in SVN through > TortoiseSVN->Repo Browser. > > svn://___.__.__.___(server ip)/SVN/aedge > So you are using svnser

Re: SVN issue - Repository - not able to login

2024-05-27 Thread Roshan Pardeshi
Hello Daniel, We are using below mentioned path for access in SVN through TortoiseSVN->Repo Browser. svn://___.__.__.___(server ip)/SVN/aedge Regards, <https://www.youtube.com/user/trustncdex> <https://twitter.com/ncdex> <https://www.linkedin.com/company/27547/> <

Re: [EXTERNAL] Re: svn checkout Hangs/Crashes/Succeeds Over HTTP

2024-05-27 Thread Johan Corveleyn
On Sat, May 25, 2024 at 12:12 AM Williams, James P. {Jim} (JSC-CD4)[KBR Wyle Services, LLC] via users wrote: > > > Den lör 11 maj 2024 kl 03:00 skrev Williams, James P. {Jim} (JSC-CD4)[KBR > > Wyle Services, LLC] via users : > > > You previously mentioned Subversion 1.14.1, is that on the server

RE: [EXTERNAL] Re: svn checkout Hangs/Crashes/Succeeds Over HTTP

2024-05-24 Thread Williams, James P. {Jim} (JSC-CD4)[KBR Wyle Services, LLC] via users
om the server? > Can you catch/view the actual XML message sent from the server? I'm thinking > if this is mangled in some strange way that is upsetting the XML parser. We're not able to install tools like wireshark, if that's what you're suggesting. I don't see a way

Re: SVN issue - Repository - not able to login

2024-05-23 Thread Daniel Sahlberg
Den tors 23 maj 2024 kl 18:03 skrev Roshan Pardeshi < roshan.parde...@ncdex.com>: > Hello Team, > > Please find the my input inline below. > > Which protocol are you using to access the repository? - Tortoise SVN - > Repo Browser > Are you using Apache/mod_dav_svn (

Re: SVN issue - Repository - not able to login

2024-05-23 Thread Roshan Pardeshi
Hello Team, Please find the my input inline below. Which protocol are you using to access the repository? - Tortoise SVN - Repo Browser Do you have other repositories where this works? - No Can you share your server configuration? - its a Redhat Linux with 16 GB RAM and 4 core CPU. Regards

Re: SVN issue - Repository - not able to login

2024-05-23 Thread Daniel Sahlberg
Den tors 23 maj 2024 kl 16:07 skrev Roshan Pardeshi < roshan.parde...@ncdex.com>: > Hi All, > > We are not getting Authentication window(using TortoriseSVN Repo Browser) > after creating a new repository in SVN to access that repository > > Else if we are getting authenti

SVN issue - Repository - not able to login

2024-05-23 Thread Roshan Pardeshi
Hi All, We are not getting Authentication window(using TortoriseSVN Repo Browser) after creating a new repository in SVN to access that repository Else if we are getting authentication window then after input of username and password of user its showing error message as "Authentication f

Re: Migrate from Git to SVN on Fedora server

2024-05-21 Thread Jeffrey Walton
On Tue, May 21, 2024 at 6:28 PM Nico Kadel-Garcia wrote: > > On Tue, May 21, 2024 at 6:55 AM Jeffrey Walton wrote: > > > > I'd like to migrate some source code from Git to SVN on my Fedora > > server. The rub is, I'd like to use Nginx instead of Apache. >

Re: Migrate from Git to SVN on Fedora server

2024-05-21 Thread Nico Kadel-Garcia
On Tue, May 21, 2024 at 6:55 AM Jeffrey Walton wrote: > > Hi Everyone, > > I'd like to migrate some source code from Git to SVN on my Fedora > server. The rub is, I'd like to use Nginx instead of Apache. Why? What do you expect to get from Nginx that is not buil

Re: Migrate from Git to SVN on Fedora server

2024-05-21 Thread Nathan Hartman
On Tue, May 21, 2024 at 6:55 AM Jeffrey Walton wrote: > Hi Everyone, > > I'd like to migrate some source code from Git to SVN on my Fedora > server. The rub is, I'd like to use Nginx instead of Apache. > > I think I can switch the repo from Git to SVN by performing t

Re: Migrate from Git to SVN on Fedora server

2024-05-21 Thread Daniel Sahlberg
Den tis 21 maj 2024 kl 12:55 skrev Jeffrey Walton : > Hi Everyone, > > I'd like to migrate some source code from Git to SVN on my Fedora > server. The rub is, I'd like to use Nginx instead of Apache. > Hi, Welcome! Be aware of a difference between Git and Subversion

Migrate from Git to SVN on Fedora server

2024-05-21 Thread Jeffrey Walton
Hi Everyone, I'd like to migrate some source code from Git to SVN on my Fedora server. The rub is, I'd like to use Nginx instead of Apache. I think I can switch the repo from Git to SVN by performing the following at the server: cd /var/test-src find . -name '.gi

Re: [EXTERNAL] Re: svn checkout Hangs/Crashes/Succeeds Over HTTP

2024-05-17 Thread Daniel Sahlberg
Den fre 17 maj 2024 kl 00:20 skrev Williams, James P. {Jim} (JSC-CD4)[KBR Wyle Services, LLC] via users : > > BTW: as Daniel asked: You previously mentioned Subversion 1.14.1, is > > that on the server or on the client? > > I've been testing with SVN 1.14.1 on bot

  1   2   3   4   5   6   7   8   9   10   >