git_status
Check the status of a Git repository's working tree by providing the repository path. Track changes, untracked files, and branch information in a clear summary.
Instructions
Shows the working tree status
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| repo_path | Yes | 
Input Schema (JSON Schema)
{
  "properties": {
    "repo_path": {
      "title": "Repo Path",
      "type": "string"
    }
  },
  "required": [
    "repo_path"
  ],
  "title": "GitStatus",
  "type": "object"
}