bitbucket_get_commits
Retrieve commit history from a Bitbucket repository by providing workspace and repository. Optionally filter by commit ID ranges (since/until) and set a maximum number of commits.
Instructions
Get commit history for a repository branch.
Args: workspace: Workspace name or project key. repository: Repository name. until: The commit ID or ref (inclusively) to retrieve commits before limit: Maximum number of commits to return (default: 25). since: The commit ID or ref (inclusively) to retrieve commits after
Returns: JSON string containing commit history.
Raises: ValueError: If the Bitbucket client is not configured or available.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of commits to return | |
| since | No | The commit ID or ref (inclusively) to retrieve commits after | |
| until | No | The commit ID or ref (inclusively) to retrieve commits before | |
| workspace | Yes | Workspace name (Cloud) or project key (Server/DC) | |
| repository | Yes | Repository name |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |