由于并发提交操作,是否可能会出现与 SVN 不一致的分支/标签?
我试图了解 subversion 是否有自己的机制来调节主干上的并发用户活动(即分支/标签操作和提交操作同时发生),或者是否由用户在操作之前在它们之间进行同步在树干上。
我一直在尝试在网上找到有关此内容的文档,但一直无法找到一些内容,所以如果有人能够在这个主题上启发我,我将不胜感激。
先感谢您!
I'm trying to understand whether subversion has its own mechanisms for regulating concurrent user activities on the trunk (IE a branch/tag action and a commit action happening at the same time) or if it's up to the users to sync between themselves before acting on the trunk.
I've been trying to find documentation about this on the net but haven't been able to come up with something, so I appreciate if someone can enlighten me on the topic.
Thank you in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
SVN 会处理它。 SVN 操作是原子的,这意味着如果由于某种原因失败,则根本不会执行操作,并且存储库状态将保持与操作之前相同。
SVN takes care of it. SVN actions are atomic, which means that if it fails for some reason, then action will not be performed at all, and repository state will stay the same as before the action.