On Freitag 18 Februar 2011, Parker Coates wrote: > This is off topic, but is there a git tool to run a particular > command (for example, cmake && make && ./test) for every > commit in a range? Something like git-bisect without the > bisecting. for commit in `git log 64d2c1e...ba634b6 --pretty='format:%h'` do echo test $commit done -- Wolfgang