git_commit_history
View and filter commit history for a specific branch in a Git repository. Retrieve up to a specified number of commits, filter by author, date range, or message content to analyze code changes.
Instructions
Get commit history for a branch with optional filtering.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
author | No | Filter by author (optional) | |
branch | No | The branch to get history from | main |
grep | No | Filter commits by message content (optional) | |
max_count | No | Maximum number of commits to retrieve | |
repo_url | Yes | The URL of the Git repository | |
since | No | Get commits after this date (e.g., "1 week ago", "2023-01-01") | |
until | No | Get commits before this date (e.g., "yesterday", "2023-12-31") |