list_branch_commits
List commits in a Bitbucket branch with filters for author, date range, and message search. Retrieve detailed commit info with pagination and merge commit settings.
Instructions
List commits in a branch with detailed information and filtering options
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of commits to return (default: 25) | |
| since | No | ISO date string - only show commits after this date (optional) | |
| start | No | Start index for pagination (default: 0) | |
| until | No | ISO date string - only show commits before this date (optional) | |
| author | No | Filter by author email/username (optional) | |
| search | No | Search for text in commit messages (optional) | |
| workspace | Yes | Bitbucket workspace/project key (e.g., "PROJ") | |
| repository | Yes | Repository slug (e.g., "my-repo") | |
| branch_name | Yes | Branch name to get commits from | |
| include_merge_commits | No | Include merge commits in results (default: true) |