vote up 0 vote down star

Hello, I am new to Linux and 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!

flag
1  
I've never seen addressing svn repositories by their folder. I always thought that a web server(like apache) is needed. – kubal5003 Nov 5 at 20:21
2  
@kubal5003 Subversion supports multiple protocols: local filesystem (file://), svnserve (svn://), Authenticated svnserve via SSH (ssh+svn://), WebDAV (http://), WebDAV over SSL (https://)... – Pascal Thivent Nov 5 at 20:54

1 Answer

vote up 2 vote down

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...

link|flag
Thanks for the reply, but that is exactly my problem since I am new to linux, I am not sure what would be "my_mount_point". In File Browser I just see "e$ on WindowsServerName". I tried putting that after file:/// but it did not work – AMS949 Nov 5 at 20:40
running "mount -v" from the command line should give you a list of all mounted file systems... – netzwerg Nov 5 at 20:46
mount -v does not show anything related to the windows share. I am not sure if this is related to me creating the mount using the gui, Places->Conntect to server... – AMS949 Nov 7 at 2:30
hmmm... this sounds very ubuntu-specific. maybe you should isolate/re-phrase the mounting aspect of this question and post it over at serverfault.com – netzwerg Nov 10 at 8:35

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.