git_log
Retrieve commit logs from a specified Git repository to track changes, view history, and monitor activity. Utilize the max_count parameter to limit displayed results for focused insights.
Instructions
Shows the commit logs
Input Schema
Name | Required | Description | Default |
---|---|---|---|
max_count | No | ||
repo_path | Yes |
Input Schema (JSON Schema)
{
"properties": {
"max_count": {
"default": 10,
"title": "Max Count",
"type": "integer"
},
"repo_path": {
"title": "Repo Path",
"type": "string"
}
},
"required": [
"repo_path"
],
"title": "GitLog",
"type": "object"
}