So How Do I Prevent This?
Prevention using “mkbranch” triggers
$brtype = $ENV{‘CLEARCASE_BRTYPE’};@id_str = split(‘/’, $ENV{‘CLEARCASE_ID_STR’});pop(@id_str);$parent = pop(@id_str);if ($brtype =~ /^integ/) { exit(1) unless ($parent eq ‘main’);} elsif ($brtype =~ /^dev/) { exit(1) unless ($parent =~ /^integ/);}exit(0);