list_commits
Retrieve commit history for a GitLab project with options to filter by path, date range, SHA, and pagination. Supports detailed commit stats and first-parent history.
Instructions
Get commit history for a GitLab project
Input Schema
Name | Required | Description | Default |
---|---|---|---|
all | No | ||
first_parent | No | ||
page | No | ||
path | No | ||
per_page | No | ||
project_id | No | ||
sha | No | ||
since | No | ||
until | No | ||
with_stats | No |
Input Schema (JSON Schema)
{
"properties": {
"all": {
"type": "boolean"
},
"first_parent": {
"type": "boolean"
},
"page": {
"type": "number"
},
"path": {
"type": "string"
},
"per_page": {
"type": "number"
},
"project_id": {
"type": "string"
},
"sha": {
"type": "string"
},
"since": {
"type": "string"
},
"until": {
"type": "string"
},
"with_stats": {
"type": "boolean"
}
},
"type": "object"
}