Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
SVN 有没有办法从远程存储库签出到另一个远程位置,而不是我的本地文件系统?就像是:
svn co http://myrepository/svn/project ssh me@otherlocation.net:/var/www/project
我认为你可以这样做:
ssh me@other.net 'svn co http://repository/svn/project /var/www/project'
这利用了 ssh 允许您远程执行命令的事实。
没有。如果要复制存储库,请查看svnsync。
您可以将 Subversion 与SSHFS一起使用。