git_log
Display commit history with details including commit messages, authors, dates, and branch information to track code changes and project evolution.
Instructions
Show commit history with details
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| cwd | No | Repository directory | |
| limit | No | Number of commits to show | |
| oneline | No | Show one line per commit | |
| graph | No | Show commit graph | |
| all | No | Show all branches |
Input Schema (JSON Schema)
{
"properties": {
"all": {
"default": false,
"description": "Show all branches",
"type": "boolean"
},
"cwd": {
"description": "Repository directory",
"type": "string"
},
"graph": {
"default": false,
"description": "Show commit graph",
"type": "boolean"
},
"limit": {
"default": 10,
"description": "Number of commits to show",
"type": "number"
},
"oneline": {
"default": false,
"description": "Show one line per commit",
"type": "boolean"
}
},
"type": "object"
}