On Mon, Apr 13, 2009 at 1:51 PM, E R <pc88mxer@xxxxxxxxx> wrote: > Hi, > > I'd like to generate the following report from git: > > for each branch: > - info about the latest commit on that branch (date and time, message, etc.) Depending on what you want to do---from a bash shell, you could do: for i in $(git branch -a | cut -b3-); do echo $i; git show -s $i; echo; done > - info about the last time it was merged into master for i in $(git branch -a | cut -b3-); do echo $i; git show -s $(git merge-base $i master); echo; done > > What commands can I run to figure this out? I think I can figure out > the first one - it's the second one I'm having trouble with. > > And if it would easier to do it from the C API (or something like the > perl Git::PurePerl module) I'd be interested in knowing that, too. > > Thanks, > ER > -- > 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 > -- 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