git_status
Check Git repository status to view staged, unstaged, and untracked files. Use this tool to monitor file changes and track development progress in your working directory.
Instructions
Get repository status showing staged, unstaged, and untracked files
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| cwd | No | Repository directory (defaults to current directory) | |
| short | No | Show short format status |
Input Schema (JSON Schema)
{
"properties": {
"cwd": {
"description": "Repository directory (defaults to current directory)",
"type": "string"
},
"short": {
"default": false,
"description": "Show short format status",
"type": "boolean"
}
},
"type": "object"
}