Does anybody know if there is a way to automatically commit a project (a directory) just after a successful build from within an IDE? That is: something like a continous integration system, just lighter and better fit for a low-ceremony, "solo development" scenario.
I'm particularly interested in any solution that can work with IntelliJ IDEA (Community Edition) and GIT for Android projects (Java/Ant/Maven) but I'm also interested in other solutions (Eclipse, Netbeans, SVN, Hg, etc.). I'm also interested in a more general discussion on this topic (it is a good/bad idea, it can be done this way or this other, etc.).
I'm also open to code-based solutions (scripts, plug-ins, etc.). In particular, does anybody know if IntelliJ IDEA offers any "hook" for executing a script just before/after a menu command?
RATIONALE: I'm using IDEA to make a long series of small (but painful) experiments on an existing Android project and I would like to be able to go back step-by-step when needed using GIT (each step being represented by one of the previous successful builds). Call it "breadcrumbs programming" if you like.
Please note: I do know that this can be easily obtained with Ant/Maven/GIT/many-other-tools from the command line. I just want to see if it is possible to do it from within any of the IDEs I'm used to. And yes: I know I should commit often. I do it. I'm just tired to do it by hand.