Search code examples
version-controlclearcase

clearcase see when was the stream last rebased


I have the below stream in clearcase

[tthangavel@wtl-lbuild-4 fw]$ c lsstream
2016-05-23T03:32:31-04:00  my_stream_name  user1

How do I check when was the stream last updated?


Solution

  • A view is updated, a stream is rebased.

    You can check the minor events associated to its history (cleartool lshistory):

    cleartool lshist -min stream:tcp_540_svcommon@\mypvob
    

    (replace mypvob by the PVob or project vob of that stream, note: /vobs/mypvob on Unix \mypvob on Windows)

    If that doesn't work, all you can do is check the date of the foundation baselines (using fmt_ccase):

    cleartool descr -fmt "%[found_bls]CXp" stream:tcp_540_svcommon@\mypvob
    

    For each baseline, check its date: the most recent is the last rebase.