git_lfs_fetch
Fetch Git LFS objects from a remote repository to ensure access to large files. Specify the local repo path, and optionally perform a dry run or convert pointers to objects for efficient storage management.
Instructions
Fetch LFS objects from the remote repository.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
dry_run | No | Whether to perform a dry run | |
pointers | No | Whether to convert pointers to objects | |
repo_path | Yes | The path to the local Git repository |
Input Schema (JSON Schema)
{
"properties": {
"dry_run": {
"default": false,
"description": "Whether to perform a dry run",
"type": "boolean"
},
"pointers": {
"default": false,
"description": "Whether to convert pointers to objects",
"type": "boolean"
},
"repo_path": {
"description": "The path to the local Git repository",
"type": "string"
}
},
"required": [
"repo_path"
],
"type": "object"
}