Linux command
git-commits-since 命令
文本
复制后可按需替换文件名、目录或参数。
常用示例
Show commits since yesterday
git commits-since yesterday
Show commits since last week
git commits-since "last week"
Show commits since a specific date
git commits-since "[2024-01-01]"
Show commits since a relative time
git commits-since "2 hours ago"
说明
git commits-since is a convenience command from git-extras that displays commits made since a specified date. When invoked without arguments, it defaults to showing commits since "last week". It accepts natural language date expressions like "yesterday", "last week", "2 hours ago", "3 o clock pm", or specific dates like "2024-01-01". The command wraps git log with appropriate date filtering, providing more readable output than manually constructing git log --since commands. This is particularly useful for stand-ups, weekly reviews, generating changelogs, or checking what changed since deploying a release.
FAQ
What is the git-commits-since command used for?
git commits-since is a convenience command from git-extras that displays commits made since a specified date. When invoked without arguments, it defaults to showing commits since "last week". It accepts natural language date expressions like "yesterday", "last week", "2 hours ago", "3 o clock pm", or specific dates like "2024-01-01". The command wraps git log with appropriate date filtering, providing more readable output than manually constructing git log --since commands. This is particularly useful for stand-ups, weekly reviews, generating changelogs, or checking what changed since deploying a release.
How do I run a basic git-commits-since example?
Run `git commits-since yesterday` in a terminal, then adjust file names, paths, flags, or remote targets for your system.
Where can I find more git-commits-since examples?
This page includes 4 examples for git-commits-since, plus related commands for nearby Linux tasks.