What\'s the best method to notify other developers when a change committed into revision control requires some specific additional action by the developer getting the update
With git, what you could do (even if it isn't really there for that scenario) is to use a filter driver, provided your commit includes changes for a file with a recognizable content (the filter doesn't have a name or path of the file).
A filter driver is:
.gitattributes
files (meaning, contrary to hooks or triggers, you can easily distribute it)Again, the point is to not use hooks (which you can't easily replicated amongst repos), and use a mechanism which can be versioned and cloned around.