How to check files from the command line and show the graphical interface of the new UCM activity, if necessary

I want to check some files from a script package, but since we use UCM verification files, you need to associate them with activity. Is there an easy way to show a graphical interface for creating / selecting activity in order to link the checkout using?

+3
source share
2 answers

You can open a dialog using the cleardlg program with / checkout arguments.

+4
source

You can simply request the name of your activity in a script, and then use the command cleartool setactivity

cleartool sectact -view viewTag -none       # make sure to unset any previous activity
cleartool sectact -view viewTag newActivity # set the new activity (name@\pvob) 

ClearCase Project Explorer (UCM GUI) clearprojexp, , " UCM".

0

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


All Articles