我在Windows计算机上设置了VisualSVN服务器。如何通过终端从其他Ubuntu(Linux)计算机访问该存储库?
答案 0 :(得分:2)
您需要在Ubuntu上安装subversion客户端。在终端上运行它。
sudo apt-get install subversion
有关如何使用客户端的更多信息,请参阅Ubuntu帮助部分: https://help.ubuntu.com/community/Subversion#Access方法
答案 1 :(得分:2)
对于WIndows使用TortoiseSVN或对Linux使用SubDiverSVN - 它们是基于UI的实用程序。或者安装command-line SVN并执行
svn list <url_to_your_repository> //to list the folders
svn co <url_to_your_repository> //to checkout the code