Hi, On Tue, Oct 8, 2019 at 10:42 AM ng0 <[email protected]> wrote: > > > > Naturally, this is not about removing (all) credit: we would still have > > > both the top-level AUTHORS file and the attribution via the Git history. > > Which is in the 0.10.x series timecapsule for GNUnet, and no one has > stepped up to make an major update to it. > > > It requires quiet a lot of piping and stepping through commits, but > it's possible to get all committers of a file through git itself. > git alone can't easily tell you the answer to "who contributed to this > file from day 0?".
FYI, this will give you all the authors for a particular file: git log --format='%an' filename|sort -u Add --since="YYYY-MM-DD" to the git command if you want only commits since a certain date. Best regards, -- Marcos Marado _______________________________________________ GNUnet-developers mailing list [email protected] https://lists.gnu.org/mailman/listinfo/gnunet-developers
