hi, I was using subversion on windows.I set SVN_EDITOR env variable to notepad.exe.Then I created a repository using svnadmin and tried to import a project to it. Suppose my original codebase is at C:\code\myproject,I want to create a workdir at C:\code\workdir >>cd C:\code >>svnadmin create svnrepo this created repository successfully as folder C:\code\javasvnrepo
>>svn import myproject file:///C:\code\svnrepo\myproject This opens notepad and after entering a message ,I save it.It gives this message, svn: Unable to open an ra_local session to URL svn: Unable to open repository 'file:///C:%5Ccode%5Csvnrepo %5Cmyproject' svn: Your commit message was left in a temporary file: svn: 'svn-commit.tmp' Now ,I would like to checkout the code to workdir.In spite of the error ,I tried this. >>cd C:\code\workdir >>svn checkout file:///C:\code\svnrepo This causes error message svn: Unable to open an ra_local session to URL svn: Unable to open repository 'file:///C:%5Ccode%5Csvnrepo I can do this without problems in linux.But I need to work on windows for this particular project.So,any help would be appreciated.