list_commits
Retrieve commit history for a Bitbucket repository to track changes, review code modifications, and monitor development progress with customizable limit options.
Instructions
Get commit information for a specific repository
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Maximum number of commits to return (default: 50, max: 100) | |
repository_name | Yes | Name of the repository (repo slug) |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 50,
"description": "Maximum number of commits to return (default: 50, max: 100)",
"maximum": 100,
"minimum": 1,
"type": "number"
},
"repository_name": {
"description": "Name of the repository (repo slug)",
"type": "string"
}
},
"required": [
"repository_name"
],
"type": "object"
}