git_track
Stage specific files or all changes in a Git repository by specifying file paths or using a wildcard to track everything. Simplifies file management in Git workflows within the Git Repo Browser MCP environment.
Instructions
Track (stage) specific files or all files.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
files | No | Array of file paths to track/stage (use ["."] for all files) | |
repo_path | Yes | The path to the local Git repository |
Input Schema (JSON Schema)
{
"properties": {
"files": {
"default": [
"."
],
"description": "Array of file paths to track/stage (use [\".\"] for all files)",
"items": {
"type": "string"
},
"type": "array"
},
"repo_path": {
"description": "The path to the local Git repository",
"type": "string"
}
},
"required": [
"repo_path"
],
"type": "object"
}