git_fetch
Download objects and refs from remote Git repositories to update your local copy with changes from team members or upstream sources.
Instructions
Download objects and refs from remote repository
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| cwd | No | Repository directory | |
| remote | No | Remote name | origin |
| prune | No | Remove deleted remote branches |
Input Schema (JSON Schema)
{
"properties": {
"cwd": {
"description": "Repository directory",
"type": "string"
},
"prune": {
"default": false,
"description": "Remove deleted remote branches",
"type": "boolean"
},
"remote": {
"default": "origin",
"description": "Remote name",
"type": "string"
}
},
"type": "object"
}