Is there a way with SVN to check out from a remote repository to another remote location rather than my local file system? Something like:

svn co http://myrepository/svn/project ssh me@otherlocation.net:/var/www/project
link|improve this question

feedback

3 Answers

up vote 6 down vote accepted

I think you could do:

ssh me@other.net 'svn co http://repository/svn/project /var/www/project'

This takes advantage of the fact that ssh lets you execute a command remotely.

link|improve this answer
I tested it myself just to be sure, and it works for me, so let me know if it doesn't work for you. – davr Oct 2 '08 at 17:57
feedback

Nope. If you want to copy a repository, look into svnsync.

link|improve this answer
1  
Syncing repositories is not the same as checking out a repository. – Bert Huijben Oct 2 '08 at 14:09
feedback

You could use Subversion with SSHFS.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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