up vote 6 down vote favorite
1
share [g+] share [fb]

If I have added/removed/modified a large number of files in my local ClearCase view, how can I be certain that all the files have been added to source control?

link|improve this question

feedback

2 Answers

up vote 3 down vote accepted

Your answer is correct, for snapshot views (which you call 'local view' ?)
In a dynamic view, a simple

cleartool lsprivate

would suffice.

But that would leave out hijacked files (which are already added to source control, but may have been modified without ClearCase knowing it)

So I would recommend to complete your command with (for Windows):

for /F "usebackq delims= " %i in (`cleartool ls -r -nxn ^| find "hijacked"`) do @echo %i

For Unix:

cleartool ls -r -nxn | grep hijacked

That would also leave files in checkouts (granted, they also are added to source control, but should be also listed as they must be eventually committed or cancelled).
In Snapshot views:

cleartool lscheckout -recur

In Dynamic views:

cleartool lsprivate –co
link|improve this answer
This must be done through command line? no support from the Visual Studio integration? (where i add most of the files anyway) – liortal May 22 '11 at 20:11
@liortal: no direct "integrated" support, plus my previous answer (stackoverflow.com/questions/6088059/…) mentioned a potential bug for CC7.0.x. Having a command line around can be handy at times ;) – VonC May 22 '11 at 20:31
feedback

Use cleartool ls -view_only -r from the your local view VOB directory.

To add any files recursively to source control that are only in the local view, see How can I use ClearCase to “add to source control …” recursively?.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.