git_show
Display detailed commit information including changes, author, and metadata to review code modifications and understand project history in your development environment.
Instructions
Show details of a commit
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| commit | No | Commit hash or reference to show | HEAD |
| cwd | No | Repository directory |
Input Schema (JSON Schema)
{
"properties": {
"commit": {
"default": "HEAD",
"description": "Commit hash or reference to show",
"type": "string"
},
"cwd": {
"description": "Repository directory",
"type": "string"
}
},
"type": "object"
}