git_local_changes
Identify and retrieve uncommitted changes in a local Git repository by specifying its path, enabling efficient tracking of modifications before commits.
Instructions
Get uncommitted changes in the working directory.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
repo_path | Yes | The path to the local Git repository |
Input Schema (JSON Schema)
{
"properties": {
"repo_path": {
"description": "The path to the local Git repository",
"type": "string"
}
},
"required": [
"repo_path"
],
"type": "object"
}