Reputation: 131521
With git log my_file
, I can see a list of commits (or rather a forest of branches and commits on them) involving my_file
, inclduing dates and commit comments. How do I do this with ClearCase?
Upvotes: 1
Views: 305
Reputation: 1323793
The two commands to consider are:
cleartool lshistory
which applies to:
lbtype:V3.0
cleartool lsvtree
, which is closer to a git log --all --branches
, which lists part or all of the version tree of one or more elements.
By default, the listing includes all branches of an element's version tree except for obsolete branches
Upvotes: 1
Reputation: 131521
Use:
cleartool lshistory /path/to/file
for that. Output will have one line for every action, with the fields:
@@
+ revision/branch specification (e.g. foo@@/bar/LATEST
)Enjoy.
Upvotes: 0