How to display commits created on a specific day with the git log command

The git log command offers many opportunities to learn more about the commits made by contributors. One way you might consume such information is by date. To view commits in a Git repository created on a specific date or range of dates, use the git log command with the options –since or –until, or both.

Source: LXer – How to display commits created on a specific day with the git log command