In perl.git, the branch blead has been updated <http://perl5.git.perl.org/perl.git/commitdiff/208edbfe01f1e20448c7416e83a314e3969961c9?hp=b770e143548c6091e84d4ed5051d27d26e0f82e8>
- Log ----------------------------------------------------------------- commit 208edbfe01f1e20448c7416e83a314e3969961c9 Author: Ãvar Arnfjörð Bjarmason <[email protected]> Date: Thu Apr 15 15:40:33 2010 +0200 Simplify the perldelta howto by using Git features `git-log' can generate a list of authors without perl's help and `git-diff` can produce a diffstat without diffstat(1). ----------------------------------------------------------------------- Summary of changes: Porting/how_to_write_a_perldelta.pod | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Porting/how_to_write_a_perldelta.pod b/Porting/how_to_write_a_perldelta.pod index 5a55095..6cae763 100644 --- a/Porting/how_to_write_a_perldelta.pod +++ b/Porting/how_to_write_a_perldelta.pod @@ -302,11 +302,11 @@ The list of people to thank goes here. You can find the list of committers and authors by: - % git log v5.11.1..HEAD | perl -nlwe '$seen{$1}++ if /^Author: ([^<]*)/; END { print for sort keys %seen }' + % git log --pretty='format:%an' v5.11.1..HEAD | sort | uniq And how many files where changed by: - % git diff v5.11.1..HEAD | diffstat + % git diff --stat=200,200 v5.11.1..HEAD =item Reporting Bugs -- Perl5 Master Repository
