Question

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
Was it helpful?

Solution

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.

OTHER TIPS

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

You could use Subversion with SSHFS.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top