SVN服务器位于内部工作网络中。使用Linux工作站,我只能通过SSH访问内部网络到服务器。
我在工作站上创建了一个ssh隧道:
ssh -Nf -L443:svn.server:443 name@network_access.server
使用以下命令为我提供有关svn目录的信息:
svn info
https://localhost/directory/trunk
使用:
svn co
https://localhost/directory/trunk
test
将在trunk中拉出几个文件夹,然后在出现以下消息之前暂停。
svn:warning:错误处理外部定义 'test / trunk / folderx':
svn:警告:'https://svn.server.com/directory/trunk'的选项:可能 没有连接到服务器(https://svn.server.com)
非常感谢任何帮助。