I was looking through some logs in a submodule today (somewhat furiously) and typed some errors into the dates in the command
git log --since="2019-12-31" --oneline | wc -l
90
and instead of typing that I typed,
git log --since="2019-12=31" --oneline | wc -l
2147
I was alarmed by the difference is count which is why I was able to notice the error immediately. However, I'm unclear as to what the behavior is in this case. Is this a bug or is this expected behavior for git log
?
I would expect an error in parsing but it looks like the logs go back to January or February of 2019.