Find merge arrows pointing to a version in ClearCase

你。 提交于 2019-12-01 08:02:34
VonC

The only option in the fmt_ccase man page would be

%[hlink:filter]p

Displays the hyperlink source and target, with an arrow pointing from the source to the target. The optional H argument lists only the hyperlink names.
You can optionally specify a filter string, preceded by a colon. This filter if present, restricts the output to names that match the filter string. Case is considered when matching the string.

If this doesn't work, you have to resort to grep/awk commands in order to extract those version from the cleartool describe output.

The cleartool descr -ahlink restricts a bit the output.

–ahlink

The listing includes the path names of the objects hyperlinked to pname, annotated with → (listed object is the to- object) or ← (listed object is the from-object).

For example:

-> M:\gamma\vob1\proj\include\db.c@@\main\52 <- M:\gamma\vob1\proj\bin\vega@@\main\5

Beside the full script option, you can have a look at external third-party tools like R&D Reporter, which can vizualize and export those same hyperlinks.
However:

  • this is a commercial tool
  • depending on the export output and what you want, you might end up parsing just another output to extract what you need.

For more on that tool, contact Tamir Gefen.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!