list-commits
Retrieve commit history for a specific branch in a GitHub repository to track code changes and review development progress.
Instructions
Get list of commits of a branch in a GitHub repository
Input Schema
Name | Required | Description | Default |
---|---|---|---|
owner | Yes | ||
page | No | ||
perPage | No | ||
repo | Yes | ||
sha | No |
Input Schema (JSON Schema)
{
"properties": {
"owner": {
"type": "string"
},
"page": {
"type": "number"
},
"perPage": {
"type": "number"
},
"repo": {
"type": "string"
},
"sha": {
"type": "string"
}
},
"required": [
"owner",
"repo"
],
"type": "object"
}