Cartman
Cartman

Reputation: 21

ClearCase: how to find version history of each document in a folder

I am a newbie to Rational ClearCase. Can you guide me how can I get version history (report) of each document in a folder say 'ABC'.

I need a report which details version history, (history of change details if possible)

Please enlighten me on this.

Thanks

Upvotes: 2

Views: 4371

Answers (1)

VonC
VonC

Reputation: 1323523

The two usual tools for getting a "report" on an element (file or directory) on ClearCase are:

  • lsvtree (version tree)
    cleartool lsvtree (-graph) /path/to/myView/MyVob/.../myFile
  • lshistory (history)
    cleartool lshistory (-graph) /path/to/myView/MyVob/.../myFile

Both will launch a graphical interface if you include -graph in your command.

Upvotes: 7

Related Questions