Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 13 years ago.
从 Subversion 1.4 开始,有一个名为 svnsync 的工具来将一个完整的存储库镜像到另一个存储库中。这样,您可以保留本地备份:
svnsync init file:⁄⁄⁄backup/directory svn://svn.example.com/remote/repo svnsync sync svn://svn.example.com/remote/repo
作为替代方案,您可以切换到分布式 VCS就像 GIT 或 Bazaar,存储库的所有成员都保留其本地副本。
As of Subversion 1.4, there's a tool called svnsync to mirror one complete repository into another. That way, you may keep a local backup:
As an alternative, you could switch to a Distributed VCS like GIT or Bazaar, where all members of a repository keep their local copy.
这并不太难。您可以编写自己的脚本来获取整个代码并将其复制到某个地方。然后使用操作系统服务(例如Windows任务计划程序)定期运行它。
It is not too much hard. You can write your own script to get the entire code and copy that somewhere. Then use an operating system service (e.g. Windows Task Scheduler) to run it periodically.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
暂无简介
文章 0 评论 0
接受
发布评论
评论(2)
从 Subversion 1.4 开始,有一个名为 svnsync 的工具来将一个完整的存储库镜像到另一个存储库中。这样,您可以保留本地备份:
作为替代方案,您可以切换到分布式 VCS就像 GIT 或 Bazaar,存储库的所有成员都保留其本地副本。
As of Subversion 1.4, there's a tool called svnsync to mirror one complete repository into another. That way, you may keep a local backup:
As an alternative, you could switch to a Distributed VCS like GIT or Bazaar, where all members of a repository keep their local copy.
这并不太难。您可以编写自己的脚本来获取整个代码并将其复制到某个地方。然后使用操作系统服务(例如Windows任务计划程序)定期运行它。
It is not too much hard. You can write your own script to get the entire code and copy that somewhere. Then use an operating system service (e.g. Windows Task Scheduler) to run it periodically.