git_status
View the working tree status of a Git repository, including tracked and untracked files, staged changes, and branch information, to manage repository updates effectively.
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"
}