git_remote
Manage Git remote repositories by listing, adding, removing, or showing remote connections to control version control collaboration and repository links.
Instructions
Manage remote repositories
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| cwd | No | Repository directory | |
| action | No | Remote action | list |
| name | No | Remote name (required for add/remove/show) | |
| url | No | Remote URL (required for add) |
Input Schema (JSON Schema)
{
"properties": {
"action": {
"default": "list",
"description": "Remote action",
"enum": [
"list",
"add",
"remove",
"show"
],
"type": "string"
},
"cwd": {
"description": "Repository directory",
"type": "string"
},
"name": {
"description": "Remote name (required for add/remove/show)",
"type": "string"
},
"url": {
"description": "Remote URL (required for add)",
"type": "string"
}
},
"type": "object"
}