适用于 Windows 的便携式 SVN 服务器
我希望能够将我的项目存储在 USB 记忆棒中,并在 svn 控制下。
有办法做到吗?
我不需要任何 Windows 身份验证,svn 很适合我。
我读到,通过创建一个 .bat 文件来调用运行该进程所需的所有必要文件,VisualSVN 服务器可以变得可移植。
有人知道吗?
I want to be able to store my projects in a usb stick, under svn control.
is there a way of doing it?
I don't need any windows authentication, the svn suits me fine.
I've read that visualSVN server can become portable, by creating a .bat file that calls all the necessary to run the process.
Does anyone knows anything about it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
大多数(可能是所有)SVN 客户端都支持
file://
协议,该协议允许您直接使用存储库,而无需通过任何服务器。如果存储库位于闪存驱动器上,则服务器提供的任何安全性都是毫无价值的。 SVN 安全性仅适用于远程存储库访问。
Most, probably all SVN clients support the
file://
protocol, which lets you use a repository directly without the need to go through any server.If the repository is on the flash drive, any security provided by the server is worthless. SVN security only applies to remote repository access.