Zend Studio SVN——如何判断文件是否被其他用户锁定?
有谁知道如何使用 Zend Studio IDE 判断文件当前是否被 svn 中的另一个用户锁定?
干杯。
Does anyone know how to tell if a file is currently locked by another user in svn using the Zend Studio IDE?
Cheers.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在真正需要锁定的文件上添加 svn:needs-lock 属性。 这样文件在磁盘上将是只读的。 使它们可写的方法是锁定文件。 当您锁定已被其他用户锁定的文件时,您会收到通知。
通常不需要知道哪些文件被锁定,除非您想锁定同一个文件
You can add the svn:needs-lock property on files that really require locking. That way the files will be read-only on disk. The way to make them writable is locking the file. When you lock a file that has been locked by another user, you'll be notified of that.
There's usually no need to know what files are locked, until you want to take a lock on the same file