git_log
View commit logs for Git repositories to track changes, filter by count, and customize output format, enabling efficient version control management.
Instructions
Shows the commit logs
Input Schema
Name | Required | Description | Default |
---|---|---|---|
format | No | ||
graph | No | ||
max_count | No | ||
oneline | No | ||
repo_path | Yes |
Input Schema (JSON Schema)
{
"properties": {
"format": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Format"
},
"graph": {
"default": false,
"title": "Graph",
"type": "boolean"
},
"max_count": {
"default": 10,
"title": "Max Count",
"type": "integer"
},
"oneline": {
"default": false,
"title": "Oneline",
"type": "boolean"
},
"repo_path": {
"title": "Repo Path",
"type": "string"
}
},
"required": [
"repo_path"
],
"title": "GitLog",
"type": "object"
}