users@subversion.apache.org
Cc: Simone Agha
Subject: Re: SVN skipping revert after add for file path with spaces in it
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 Windo
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',
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 rever
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 t