git-quick-stats
git-quick-stats copied to clipboard
Wrong output when using Changelogs by author
Describe the bug
When using the interactive mode for 4) Git changelogs by author
I get a wrong output
- One empty day listed to much
- Commits are not at the correct dates
To Reproduce Steps to reproduce the behavior:
Check our how git changelogs works for you.
An example I tested with an old Repository of mine
- Git clone https://github.com/Daraan/Shapes-Dataset.git
-
git-quick-stats -L
or use interactive mode - Enter Daraan
Output:
[2022-03-24]
* Update README.md (Daraan)
[2022-03-10]
[2022-03-09]
* Update README.md (Daraan)
* Update README.md (Daraan)
* Added Classifier and images (Daraan)
* Added generator and updated help (Daraan)
Expected behavior
There are 6 commits in this repository, the initial commit
is missing and they are associated with the wrong date.
The correct output would be:
[2022-03-24]
* Update README.md (Daraan)
[2022-03-10]
* Update README.md (Daraan)
* Update README.md (Daraan)
* Added Classifier and images (Daraan)
* Added generator and updated help (Daraan)
[2022-03-09]
* Inital commit (Daraan)
Desktop (please complete the following information):
- OS: Ubuntu
- Browser TBA - how to find out?
- Version 22.04
Additional Context
I used the way to install it via apt install git-quick-stats
a few days ago.
Maybe that is not the most up to date version? I am not sure how to check for the version though to verify.