Which tag or branch is created from a particular b

2019-05-29 22:55发布

In ClearCase suppose I have a branch App_Feb_Branch. Now I want to know if any Tag or Label has been created from this branch. How can I get this information?

标签: clearcase
1条回答
小情绪 Triste *
2楼-- · 2019-05-29 23:55

You can list baselines (for ClearCase UCM) or grep for version with a label (for base ClearCase).

See "Command to find labels applied on particular branch":

ct find . -nrec -name "." -ver "brtype(myBranch)" -exec "cleartool descr -fmt "%l" \"%CLEARCASE_XPN%\""

With fmt_ccase formatting options, you can use the %l to only display labels for the versions found.

That is what the cleartool descr -fmt "%l" \"%CLEARCASE_XPN%\" part of the cleartool find above does.

查看更多
登录 后发表回答