Mehdi
Mehdi

Reputation: 2398

Set Specific alerts on SVN commit with Tortoise

I noticed that in my developpment team, sometimes someone forgets to commit a file that must go with an other to keep the site working. this causes problemes and waste of time... The question is : Is it possible to tell SVN tortoise : if someone tries to commit a file A without files (A1, A2,...An) ask them if they are sure they don't need to commit them too?

Upvotes: 0

Views: 1130

Answers (1)

Milind Anantwar
Milind Anantwar

Reputation: 82231

You need to have look at hooks.hook is nothing but a program triggered by some repository event.You can write whatever set of activities(alert in your case) inside hooks.use pre hooks for running the hooks before any task take place.

EDIT:

Refer commit monitor.CommitMonitor is a small tool to monitor Apache™ Subversion® repositories for new commits.

Upvotes: 2

Related Questions