git workflow draft

Nicolás Alvarez nicolas.alvarez at gmail.com
Fri Feb 18 19:15:29 GMT 2011


On 18/02/2011, Wolfgang Rohdewald <wolfgang at rohdewald.de> wrote:
> 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

Better use "git rev-list 64d2c1e...ba634b6". And note ... and .. have
quite different meanings.

-- 
Nicolas




More information about the kde-core-devel mailing list