如何远程访问SVN服务器?

发布于 2024-10-10 21:11:54 字数 138 浏览 2 评论 0原文

我在 Windows 计算机上设置了 VisualSVN 服务器。如何通过终端从不同的 Ubuntu (Linux) 计算机访问该存储库?

I set up a VisualSVN server on a Windows machine. How do I access that repository via terminal from a different Ubuntu (Linux) machine?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

伴我老 2024-10-17 21:11:54

对于 WIndows 使用 TortoiseSVNSubDiverSVN for Linux——它们是基于 UI 的实用程序。或者安装 命令行 SVN 并执行

svn list <url_to_your_repository>  //to list the folders
svn co  <url_to_your_repository>   //to checkout the code

Use TortoiseSVN for WIndows or SubDiverSVN for Linux -- they are UI based utility. Or install a command-line SVN and perform

svn list <url_to_your_repository>  //to list the folders
svn co  <url_to_your_repository>   //to checkout the code
呆橘 2024-10-17 21:11:54

您需要在 Ubuntu 上安装 Subversion 客户端。在终端上运行它。

sudo apt-get install subversion

有关如何使用客户端的更多信息可以在 Ubuntu 帮助部分找到:
https://help.ubuntu.com/community/Subversion#Access 方法

You will need to install a subversion client on Ubuntu. Run this on the terminal.

sudo apt-get install subversion

Further information on how to use the client can be found in the Ubuntu Help Section:
https://help.ubuntu.com/community/Subversion#Access Methods

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文