git_log
Access and display Git commit history with customizable options like commit limit and one-line format, simplifying repository tracking and version control.
Instructions
Show commit history
Input Schema
Name | Required | Description | Default |
---|---|---|---|
cwd | No | Repository path | |
limit | No | Number of commits to show | |
oneline | No | One line format |
Input Schema (JSON Schema)
{
"properties": {
"cwd": {
"description": "Repository path",
"type": "string"
},
"limit": {
"description": "Number of commits to show",
"type": "number"
},
"oneline": {
"description": "One line format",
"type": "boolean"
}
},
"type": "object"
}