TortoiseSVN 是否需要任何 SVN 服务器?
我使用 TortoiseSVN,我的项目在我的笔记本电脑中。我不使用任何其他计算机来开发我的项目。
我应该安装任何 SVN 服务器(例如 VisualSVN Server)吗?
I use TortoiseSVN and my projects are in my laptop. I don't use any other computers for developing my projects.
Should I install any SVN servers like VisualSVN Server?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
不,您不需要 SVN 服务器。您可以使用 file: 协议访问本地存储库。不过,我不建议这样做。在本地计算机上安装 HTTP 甚至 svnserve 服务器很简单,并且不会消耗太多资源。
请参阅http://tortoisesvn.tigris.org/faq.html#reponoserver
No, you don't need an SVN server. You may access a local repository using the file: protocol. I wouldn't advise doing this, though. Installing an HTTP or even svnserve server on your local machine is simple and doesn't consume many resources.
See http://tortoisesvn.tigris.org/faq.html#reponoserver
Tortoise 需要连接到服务器。如果需要,您可以将本地计算机作为该服务器。
但我会推荐两件事之一。要么确保您有 Mozy 或 Carbonite 等在线备份来备份您的代码,要么使用 Codesion、Unfuddle 等在线 SVN 存储库或其他十几个存储库中的任何一个。对于小型存储库和用户群来说,它们的价格合理,并且您可以放心地知道您的代码不会出现单点故障。
Tortoise requires a server to connect to. You can have your local machine as that server if you want.
But I'd recommend one of two things. Either make sure you've got online backup like Mozy or Carbonite to backup your code, or use an online SVN repository like Codesion, Unfuddle, or any of a dozen others out there. They're reasonably priced for small repos and user bases, and you have the piece of mind knowing you don't have a single point of failure for your code.
是的,TortoiseSVN 只是一个 SVN 客户端,您需要在笔记本电脑上构建服务器。
Yes, TortoiseSVN is just a SVN client, and you need a server built on your laptop.
是的,您需要一个 Subversion 服务器来连接客户端。您可以将其安装在本地计算机上。作为替代方案,您可以使用 DVCS,例如 git 或 mercurial 不需要服务器。
Yes, you need a subversion server to connect the client to. You could install it on your local machine. As an alternative you could use a DVCS such as git or mercurial which don't require a server.