status
Check the status of a Git repository with an absolute path to identify changes, untracked files, and branch information for streamlined version control.
Instructions
Get repository status
Input Schema
Name | Required | Description | Default |
---|---|---|---|
path | No | Path to repository. MUST be an absolute path (e.g., /Users/username/projects/my-repo) |
Input Schema (JSON Schema)
{
"properties": {
"path": {
"description": "Path to repository. MUST be an absolute path (e.g., /Users/username/projects/my-repo)",
"type": "string"
}
},
"required": [],
"type": "object"
}