On 13/10/2009, at 1:45 AM, Eddie Peloke wrote: > ssh to test.myserver.com > > And once in, can check out from http://svn/svn/myrepos > > I am, however having a difficult time setting this up on versions as > my svn repos and server I need to ssh into are different.
You need to set up an ssh tunnel on the repository machine, so you can access the repository directly. like so svn+ssh://svn/svn/myrepos It comes down to prepending something like this command="/usr/opt/subversion/bin/svnserve -t -r ~/SvnRepos" before the key for the machine you are accessing from in the .ssh/ authorized_keys file. there is instructions on doing this in the redbook. NOTE: doing it this way for your account MAY override general ssh access to that account. There are other ways but for me this was the simplest and easiest. Versions cannot access Repos that are not directly (via any protocol ie svn, svn+ssh, https) available across the internet. HTH Kieren Please correct me if this is not the case but i'm pretty sure thats right ;) --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Versions" 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/versions?hl=en -~----------~----~----~----~------~----~------~--~---
