In ClearCase, is there a way to find out if a file is locked?
In ClearCase, is there a way to find out if a fil开发者_如何学Pythone is locked without checking out the file?
A simple cleartool lslock myFile@@
is enough.
(the @@
would be to list the locks on the element file. Without the @@
, that would check only if the version of the file is locked)
If the file is visible in your view, that is all you need. See man lslock.
Note: if the file itself is not locked, that doesn't mean there is no lock: its branch can be locked (or its associated Stream in UCM), or the Vob itself can be locked.
精彩评论