Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>A committed file in ClearCase is indeed read-only.</p> <p>If by "not read only" you refer to private files not yet added to a view, you can start by <a href="https://stackoverflow.com/questions/369697/command-line-to-delete-all-clearcase-view-private-files/369952#369952">looking for private files</a>, based on grep rules on a recursive <strong><a href="http://publib.boulder.ibm.com/infocenter/cchelp/v7r0m0/index.jsp?topic=/com.ibm.rational.clearcase.cc_ref.doc/topics/ct_ls.htm" rel="nofollow noreferrer"><code>ls</code></a></strong></p> <pre><code>cleartool ls -r -nxn </code></pre> <p>That would be safer than the "read only" criteria, since private files can also be read only (even though they are "not checked-in" yet, not yet managed by ClearCase)</p> <p>The idea behind a recursive <code>ls</code> is to display all the rules associated with all the files of your view. </p> <ul> <li><strong>No rule</strong> means "private" (whether the file is read-only or not)</li> <li><strong><code>Rule: ...\aBranch\LATEST</code></strong> means it is committed (and -- incidentally -- read-only)</li> <li><strong><code>Rule: CHECKEDOUT</code></strong> means it is committed, but being modified (read-write, but nothing prevents the user to make it read-only again without checking it in)</li> <li><strong><code>Rule: hijacked/eclipsed</code></strong>: committed, but modified without having being checked-out yet (read-write, but again, can be turned read-only without notifying ClearCase)</li> </ul> <p>So you can grep whatever set of files you actually need from that list, based on ClearCase rules (or lack thereof).</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload