Forums : Technical Issue Help

Dear Open Hub Users,

We’re excited to announce that we will be moving the Open Hub Forum to https://community.blackduck.com/s/black-duck-open-hub. Beginning immediately, users can head over, register, get technical help and discuss issue pertinent to the Open Hub. Registered users can also subscribe to Open Hub announcements here.


On May 1, 2020, we will be freezing https://www.openhub.net/forums and users will not be able to create new discussions. If you have any questions and concerns, please email us at info@openhub.net

git repository commits are sorted/grouped by the author date not the commit date

A git repository maintains two dates for each commit:

  1. The AuthorDate which is displayed in standard git log output

  2. The CommitDate which is displayed in git log --pretty=fuller output

Here is an example from the OpenAFS project:

commit f199ac666195771a02e3ebb040c6e5fe47c58c58
Author: Andrew Deason
AuthorDate: Wed Nov 2 16:55:49 2011 -0500
Commit: Derrick Brashear
CommitDate: Sat Nov 12 06:55:52 2011 -0800

afs: Do not use separate array for srvAddrs

This use of the AuthorDate instead of the CommitDate results in two problems:

  1. The commit list displayed by Ohloh is not ordered the same as git log output which results in confusion since the most recent commits will not always be displayed on the top of the list.

  2. Monthly totals, graphs, statistics, etc are incorrect.

The AuthorDate is the date that the Author created the first version of the patchset in the her/his local repository. The CommitDate is the date that the patchset was accepted by the project and committed to the upstream repository.

Can this please be fixed?

Thank you.

Jeffrey Eric Al... over 13 years ago