I am new to Linux and 开发者_JAVA技巧I am trying to setup eclipse with subclipse plugin to access my svn repository which is hosted on a Windows server. Everything is installed fine. When I try to create a new repository location, I am not sure how to identify the location in sublipse. I have successfully mounted the windows share and I can browse the files from the File browser but I am not sure what to type in the location url. On windows I used to type file:///p:/nameOfRepository
Thanks!
subversion does support local access via the file:///
access scheme (see wiki). on linux, your location should thus be along the lines of file:///your_mount_point/nameOfRepository
EDIT: maybe first try to access your repository from the command line (to keep subclipse out of the game until you've figured out the correct path). in early versions, subclipse could only connect to a local repository when used with the JavaHL library, not the JavaSVN library -- don't know whether this is still the case though...
精彩评论