SubVersion crash in TortoiseSVN 1.8.8

2014-09-05 Thread Rich McGrew
This crash happened in TortoiseSVN 1.8.8, which is based on Apache SubVersion 1.8.10, both of which are the latest release versions. It happened on 32-bit Windows XP Professional with Service Pack 3. It occurred when I was trying to view the difference between 2 previous revisions of a file in

Re: cannot connect to svnserve locally and remotely

2014-09-05 Thread Philip Martin
James oldyounggu...@yahoo.com writes: I got latest subversion setup on my latest Fedora 20. $svn co svn://devserver/Playground Playground --username bowing svn: E13: Unable to connect to a repository at URL 'svn://devserver/Playground' svn: E13: Can't open file

Re: cannot connect to svnserve locally and remotely

2014-09-05 Thread Stefan Sperling
On Thu, Sep 04, 2014 at 09:20:39PM -0700, James wrote: I got latest subversion setup on my latest Fedora 20. I created repository. I modified the svnserve.conf file and the passwd file in that repository. I modified the firewall to open 3690 to public for TCP. The svnserve.service is

RE: SubVersion crash in TortoiseSVN 1.8.8

2014-09-05 Thread Bert Huijben
Hi, If you want us (or the TortoiseSVN developers, which have their own list) to resolve your problem you should explain us how we can reproduce your problem. The only explanation you give us It occurred when I was trying to view the difference between 2 previous revisions

Re: SubVersion crash in TortoiseSVN 1.8.8

2014-09-05 Thread Rich McGrew
Well when the error message came up in TortoiseSVN 1.8.8 it said to post it to the Apache SubVersion mailing list and I followed the instructions. Since the window title was SubVersion Exception! and the error message said to post it to the Apache SubVersion mailing list I followed the

Assert with Github and tortoisesvn

2014-09-05 Thread Breno Magalhaes
When I try to sync my local folder with the github repository is returning this assert: In file 'D:\Development\SVN\Releases\TortoiseSVN-1.8.8\ext\subversion\subversion\libsvn_wc\update_editor.c' line 1550: assertion failed (action == svn_wc_conflict_action_delete) Breno Magalhaes

Re: cannot connect to svnserve locally and remotely

2014-09-05 Thread James
Thank you guys. Connected It is selinux stop the connection to the svnserve. I should mentioned that I have create an user group and changed the owner and permission on the repository. I also modified the svnserve.conf and passwd files of that repository and enabled to use passwd and

SVN skipping revert after add for file path with spaces in it

2014-09-05 Thread Simone Agha
Hi, I'm having trouble un-adding a directory (recursively) that has spaces in its name. I am doing this on Windows 8.1 through a batch script. An example of my code is below: set PATHWSPACES=%CD% svn add PATHWSPACES\subdir1\ svn revert PATHWSPACES\subdir1\subdir2\ --recursive When I run the

Re: SVN skipping revert after add for file path with spaces in it

2014-09-05 Thread olli hauer
On 2014-09-05 22:37, Simone Agha wrote: Hi, I'm having trouble un-adding a directory (recursively) that has spaces in its name. I am doing this on Windows 8.1 through a batch script. An example of my code is below: set PATHWSPACES=%CD% svn add PATHWSPACES\subdir1\ svn revert

Re: SVN skipping revert after add for file path with spaces in it

2014-09-05 Thread Bert Huijben
I would start by removing the final ‘\' from the paths you create yourself, as they are never necessary and affect the quoting rules (in some cases ignoring the final “). In general you should never double the quoting characters. Then you get to the boundary between parsing in 'svn’ and 'cmd',