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 [email protected]:/var/www/project
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 [email protected]:/var/www/project
I think you could do:
ssh [email protected] 'svn co http://repository/svn/project /var/www/project'
This takes advantage of the fact that ssh lets you execute a command remotely.