[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

Re: AW: Companies Using Subversion

From: Andrey Repin <anrdaemon_at_freemail.ru>
Date: Fri, 24 Apr 2009 04:50:32 +0400

Greetings, webpost_at_tigris.org!

> i have created one repository i.e:
> C:\Program Files\Subversion>svnadmin create D:\test

> My current working projec folder is: D:\yourstore

> I want to add this current project folder to created repository.
 
> i am trying to use svn import command like below. but iam getting error.
> please help on this.

> "C:\Program Files\Subversion>svnadmin create D:/test

> C:\Program Files\Subversion>svn import mytree D:/test/some/project
> svn: Invalid URL 'D:/test/some/project'

You should really start reading svnbook right now.

svnadmin addressing repositories through local paths.
svn addressing repositories through URL only.
Thus,

svnadmin create D:/test
svn import mytree file:///D:/test/some/project

> C:\Program Files\Subversion>svn import mytree D:/yourstore
> svn: Invalid URL 'D:/yourstore'

You've created D:/test, where you think svn would look for "yourstore"?

> C:\Program Files\Subversion>svn import mytree file://D:/yourstore/ -m "Initial i
> mports"
> svn: Unable to open an ra_local session to URL
> svn: Unable to open repository 'file://D:/yourstore'
> svn: Can't open file '\\D:\yourstore\format': The filename, directory name, or v
> olume label syntax is incorrect.

Obviously, the server name "D:" is malformed at the very least.
URL basics:
<protocol>://<hostname>/<path>
If <hostname> is missed, localhost is assumed.

--
WBR,
 Andrey Repin (anrdaemon_at_freemail.ru) 24.04.2009, <4:42>
Sorry for my terrible english...
------------------------------------------------------
http://subversion.tigris.org/ds/viewMessage.do?dsForumId=1065&dsMessageId=1884201
To unsubscribe from this discussion, e-mail: [users-unsubscribe_at_subversion.tigris.org].
Received on 2009-04-24 02:56:22 CEST

This is an archived mail posted to the Subversion Users mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.