bitbucket_get_commits
Retrieve commit history from a Bitbucket repository with options to filter by date range, file path, or paginate results for detailed version control analysis.
Instructions
Get commits for a repository.
Lists commits in reverse chronological order. Use since/until to specify
a commit range (like git log since..until). Use path to only show commits
that modified a specific file.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| project_key | Yes | The project key | |
| repository_slug | Yes | The repository slug | |
| path | No | Filter commits affecting this file path | |
| since | No | Commit hash or ref — exclude commits reachable from this | |
| until | No | Commit hash or ref — include commits reachable from this (default: default branch HEAD) | |
| start | No | Pagination start index | |
| limit | No | Max results (1-100) |