tags:

views:

160

answers:

1

I'm having trouble checking out a repository from my server. I have the repository created in /home/evolving/public_html/svnrepos/tdo.

Here's what happens:

james-skidmores-macbook-pro-2:tdo james$ svn checkout svn+ssh://[email protected]/svnrepos/tdo
[email protected]'s password:
stdin: is not a tty
svn: No repository found in 'svn+ssh://[email protected]/svnrepos/tdo'

I've also tried changing the path to svn+ssh://evolvingprocess.com/public_html/svnrepos/tdo. Why is it not able to find the repository?

Is there a way to basically ask a repository what its front-facing path is?

+2  A: 

Try:

svn checkout svn+ssh://evolvingprocess.com/home/evolving/public_html/svnrepos/tdo/

Usually, svn+ssh uses the full path unless you've set up a wrapper program to take care of that for you.

CoverosGene
Thank you so much!
James Skidmore