Display current baseline with Cleartool

How to view the baseline on which the current view is based?

I could only find information on how to view the currently recommended baseline for the stream.

cleartool desc -fmt %[rec_bls]CXp stream:myProject_Int@\myProject_pvob
#This gives the currently recommended baseline for the stream

Mostly I want to update Build Notes. 1. Determine the baseline at which the last relocation was performed 2. Determine the recommended current 3. Make a list of events that were delivered.

I managed to find information for steps 2 and 3, but not for step 1. Perhaps I am not using the correct term to search ... please help.

+3
source share
2 answers

You can describe Stream to get the base lines of the foundation:

cleartool descr -fmt "%[found_bls]CXp" stream:myStream@\myPVob

(,
"cleartool lsstream -cview", ).

+5

@VonC, .

cleartool lsstream -cview -fmt "%[found_bls]CXp"
+2

All Articles