You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@subversion.apache.org by alexus <al...@gmail.com> on 2011/02/09 21:38:49 UTC

http + ssh

svn co svn+ssh://your.remote-server.com/home/svn/test

is there a way to do something like this but without running
subversion daemon, because in my case I use svn through apache?

but I need to use SSH as well

so somehow http+ssh ?

-- 
http://alexus.org/

Re: http + ssh

Posted by Stephen Connolly <st...@gmail.com>.
you could use port tunnelling to make it look like an http repo on localhost
on a port other than 80

- Stephen

---
Sent from my Android phone, so random spelling mistakes, random nonsense
words and other nonsense are a direct result of using swype to type on the
screen
On 9 Feb 2011 20:43, "Ryan Schmidt" <su...@ryandesign.com> wrote:
> On Feb 9, 2011, at 14:38, alexus wrote:
>
>> svn co svn+ssh://your.remote-server.com/home/svn/test
>>
>> is there a way to do something like this but without running
>> subversion daemon, because in my case I use svn through apache?
>>
>> but I need to use SSH as well
>>
>> so somehow http+ssh ?
>
> The available repository access methods are:
>
> file:/// (no server process; no encryption; for testing local repositories
only)
>
> svn:// (svnserve daemon always running or started on demand by initd or
launchd; no encryption)
>
> svn+ssh:// (svnserve started on demand by sshd; ssh encryption)
>
> http:// (apache httpd daemon always running or started on demand by initd
or launchd; no encryption)
>
> https:// (apache httpd daemon always running or started on demand by initd
or launchd; ssl encryption)
>
>

Re: http + ssh

Posted by Ryan Schmidt <su...@ryandesign.com>.
On Feb 9, 2011, at 14:38, alexus wrote:

> svn co svn+ssh://your.remote-server.com/home/svn/test
> 
> is there a way to do something like this but without running
> subversion daemon, because in my case I use svn through apache?
> 
> but I need to use SSH as well
> 
> so somehow http+ssh ?

The available repository access methods are:

file:/// (no server process; no encryption; for testing local repositories only)

svn:// (svnserve daemon always running or started on demand by initd or launchd; no encryption)

svn+ssh:// (svnserve started on demand by sshd; ssh encryption)

http:// (apache httpd daemon always running or started on demand by initd or launchd; no encryption)

https:// (apache httpd daemon always running or started on demand by initd or launchd; ssl encryption)