git_lfs
Handle large files in Git repositories by installing, tracking, untracking, or listing LFS-managed files using specified patterns.
Instructions
Manage Git LFS (Large File Storage).
Input Schema
Name | Required | Description | Default |
---|---|---|---|
action | Yes | LFS action (install, track, untrack, list) | list |
patterns | No | File patterns for track/untrack | |
repo_path | Yes | The path to the local Git repository |
Input Schema (JSON Schema)
{
"properties": {
"action": {
"default": "list",
"description": "LFS action (install, track, untrack, list)",
"enum": [
"install",
"track",
"untrack",
"list"
],
"type": "string"
},
"patterns": {
"description": "File patterns for track/untrack",
"items": {
"type": "string"
},
"type": "array"
},
"repo_path": {
"description": "The path to the local Git repository",
"type": "string"
}
},
"required": [
"repo_path",
"action"
],
"type": "object"
}