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
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:
>
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
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
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
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
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
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,
>
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
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
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
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
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
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
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",
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
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
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
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
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
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
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
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
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
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
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
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
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
, 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
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*
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*:
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
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
<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
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
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
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
-- 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
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
> ===
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
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
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
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
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
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 @ -
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
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
> 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
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
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"
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
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
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
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
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,
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
>
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
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
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
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
>
> 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.
>>
>
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
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?
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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.
> >
>
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
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
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.
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
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.
hope for an answer, thanks very very very much.
798603...@qq.com
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
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/
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
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/>
<
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
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
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 (
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
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
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
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.
>
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
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
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
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
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 - 100 of 6786 matches
Mail list logo