On Thu, Sep 2, 2010 at 22:41, Gelonida <gelonida@xxxxxxxxx> wrote: > Is there any clear documentation about hich git commands I'm allowed to > use during a trigger script and which ones I can't It's just a program that's run at a certain point, and its exit status determines if git proceeds. So you can use any git command, but of course what you might affect what's about to be commited. For a pre-commit hook (IIRC) you should find the stuff to be commited in the index, finding a list of things that changed from a hook is just a matter of diffing HEAD against the contents of the index then. -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html