Windows调度程序每1分钟进行一次svn更新
如何每分钟更新一次 svn 控制的文件夹以获取最新的存储库?
How do do an update of update a svn controlled folder every minute to grab the latest repo?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用的是 Windows
使用 Windows 任务计划程序(在控制面板中)安排 svn.exe 命令行客户端执行
svn update c:\workingcopy
另一种方法是使用 SvnNotifier 在您需要进行更新时获取托盘通知。
如果您使用的是unix/linux
使用 cron 安排
svn update ~/workingcopy/
。If you are on windows
Use the windows task scheduler (in the control panel) to schedule the svn.exe command line client to do a
svn update c:\workingcopy
An alternative might be to use SvnNotifier to get a tray notification when you need to do an update.
If you are on unix/linux
Schedule
svn update ~/workingcopy/
with cron.