1

In our project so many file changes are happening, I want some notification for every checkin. so that every one in the team can know the files changed in the project. I want some basic information about the file like comments and the branch.

inazaruk
  • 74,247
  • 24
  • 188
  • 156
harry
  • 13
  • 4

1 Answers1

2

That means "trigger": specifically a post-op checking trigger:

cleartool mktrtype -c "Trigger to notify on checking" -element -all -postop checkin -execwin "ccperl \\path\to\notification\script" -execunix "Perl /path/to/notification.pl" NOTIFY_ON_CHECKING

You can get some ideas from the "ten best triggers" IBM page.

See also the E-mail notification postoperation trigger script, which is on deliver, but that can also give you a good idea for adapting it for each checkin.

VonC
  • 1,262,500
  • 529
  • 4,410
  • 5,250