This repository has been archived by the owner on Jul 18, 2022. It is now read-only.
Commits should be sorted by author's date and author's date should be used for copyright years #31
Labels
Milestone
Currently,
headache
implicitly relies ongit log
default order, i.e. by descending commit dates.I think we should rely on the reverse chronological order of author dates instead (i.e.
git log --author-date-order --reverse
).As an example, let's consider an empty repo where two commits are created:
By default, the order is:
a16415b
thena5ec09c
(i.e. commits sorted by descending commit date):What we want instead is the last commit in terms of author date ordering (when the contents was created matters [author date], not when it was merged [commit date] in my opinion), i.e.:
The text was updated successfully, but these errors were encountered: