get_commit
Retrieve specific commit details from a Bitbucket repository using its unique hash to access code changes and metadata.
Instructions
Get a single commit by its hash.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
commit_hash | Yes | The hash of the commit. | |
repository_name | Yes | Name of the repository (repo slug) |
Input Schema (JSON Schema)
{
"properties": {
"commit_hash": {
"description": "The hash of the commit.",
"type": "string"
},
"repository_name": {
"description": "Name of the repository (repo slug)",
"type": "string"
}
},
"required": [
"repository_name",
"commit_hash"
],
"type": "object"
}