Martin schrieb: > Hello all, > > I'm trying to set up a local subversion repository on Windows. > I can create it with the command: > > svnadmin create D:/PLAN/svnenv > > I however have a problem to put a project on it: > > svn import ./skeleton/ file:///D:/PLAN/svnenv -m "import a base > project" > > Because it outputs: > > svn: Unable to open an ra_local session to URL > svn: Unable to open repository 'file:///D:/PLAN/svnenv' > > I tryed several combinaison of target URL (with // instead of ///, by > using "URL", etc) and it didn't change. > > Thanks in advance! > > Martin > >
Hello Martin Try fwd slash + absolute path. Works on my XP machine. svn import d:/skeleton file:///repos/myproject -m "init" Juergen --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Trac Users" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/trac-users -~----------~----~----~----~------~----~------~--~---
