SVN 存储库的自动每日标记
我想在下午 6:00 自动标记每日 SVN 存储库,以便可以维护每日代码快照,并且我可以在将来随时返回到任何早期的代码存储库快照。我们使用每天运行 cron 作业的脚本来完成此操作吗?
I want to automatically tag the daily SVN repository at 6:00 pm so that the daily code snapshot can be maintained and I could at anytime in the future go back to any earlier code repository snapshot. We we do this with a script that runs through a daily cron job ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Subversion 存储库包含一个唯一的修订号,它适用于整个存储库,它是隐式标签。因此,最简单的解决方案是使用此修订号而不是额外的标记步骤。
The Subversion repository contains a single unique Revision number which is for the whole repository which is implicit a Tag. So the simplest solution is to use this revision number instead extra tagging step.