On 2/20/06, Scott Purcell <spurcell@vertisinc.com> wrote:
>
> OS Windows XP
> Version: subversion 1.3
> 1) I installed the 1.3 software using the svn-1.3.0-setup.exe.
> 2) I created a directory called subversroot under C:/ eg: C:/subversroot
> 3) I created C:/tmp/project/branches …
> C:/tmp/project/tags … etc, as the book states.
> 4) When I try executing the svn import command see below, I get the error message
> "Unable to open an ra_local session to URL"
> 5) See below for exact commands.
I don't use the bash shell but here's a sequence of cmds that work
fine in the Windows XP command prompt:
cd \temp\svn
svnadmin create repo
mkdir import
time /t > import\test.txt
cd import
svn import -m"" . file:///c:/temp/svn/repo/
cd ..
mkdir wc
svn co file:///c:/temp/svn/repo wc
Interestingly, I tried to specify a directory as part of the svn
import command (as you were doing above) but svn always used the
current directory. I'm not sure if that's a bug but the easy
workaround is to change into the directory you're importing. HTH...
---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org
Received on Mon Feb 20 21:45:22 2006