chicken-users
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Chicken-users] Save the Gazette!


From: Andy Bennett
Subject: Re: [Chicken-users] Save the Gazette!
Date: Wed, 16 Feb 2011 15:04:21 +0000
User-agent: Mozilla-Thunderbird 2.0.0.22 (X11/20090707)

Hi,

> 3) A script that, when run in a local git checkout, or maybe by talking
> direct to the core git repo, lists all the commits in a specified time
> period, grouped by branch.

> For bonus points, the output of scripts (2) and (3) could be actual
> markup for putting straight into the gazette, say as a bulleted list,
> just requiring editing to remove useless commits and to add editorial
> insight.

This bash command, executed inside a git repo, should do the trick:

-----
for b in `git branch -a --no-color | sed -e 's/^*//' -e
's/^\s*\(\S*\).*/\1/'` ; do echo " * On `echo $b | sed -e
's#^remotes/##'`:"; git log --pretty=format:'   * (%h): %s (%an, %ar)'
--since="1 week ago" $b; echo ""; done;
-----

It's a one-liner.


You might get commits appearing in more than one place if the branches
overlap.




Regards,
@ndy

-- 
address@hidden
http://www.ashurst.eu.org/
0x7EBA75FF


Attachment: signature.asc
Description: OpenPGP digital signature


reply via email to

[Prev in Thread] Current Thread [Next in Thread]