Reputation: 70327
One of the nice things about ClearCase was that it supported triggers. When users performed certain operations (check-ins, merges, etc) I could have the system automatically run a script.
What other source control systems offer this capability?
Upvotes: 1
Views: 122
Reputation: 1327224
Note: the successor of ClearCase is Jazz source control (used within RTC - Rational Team Concert), and it supports triggers as well.
Upvotes: 0
Reputation: 40319
Subversion (SVN), Mercurial (hg), git, darcs, and bzr all do.
In SVN, hg, bzr, and darcs they are called hooks.
git and CSV call them triggers.
Upvotes: 3
Reputation: 37212
Subversion allows you to write "triggers" (it calls them hooks). They are generally written on the shell language of your system, but obviously you can install your language of choice and call out to it.
You can do it in TFS as well, but you have to prat around with web-services, so it's all a palaver.
I would imagine most decent VCSs will - everything but SourceSafe probably!!!
Upvotes: 2