How to find the name of a branch of a transparent form

How do I find the branch name that my ClearCase view points to?

+3
source share
2 answers

The fact is that the view does not point to a single branch.
It combines various rules for selecting items in the configuration specification, which makes it reflect the version on the branch at a given time for a given tree / file.
Cm:

. , , ClearCase .

, :

  • cd /my/view/path/to/relevant/directory
  • cleartool ls

:

C:\views\myView\path\to\dir>cleartool ls
.checkstyle@@\main\MY_BRANCH_Dev\4                         Rule: ...\MY_BRANCH_Dev\LATEST
.classpath@@\main\MY_BRANCH_Int\ADV_ACC_Dev\1              Rule: ...\MY_BRANCH_Dev\LATEST
.classycle@@\main\MY_BRANCH_Int\ADV_ACC_Dev\0              Rule: ...\MY_BRANCH_Dev\LATEST

path/to/relevant/directory MY_BRANCH_Dev


. ClearCase UCM :

cleartool lsstream -cview

( , ), .

+8

.

, , , .

cleartool man edcs config_specs.

0

Source: https://habr.com/ru/post/1766184/


All Articles