pull
Pull changes from a specified remote repository branch using Git MCP Server. Ensure your local repository is updated by specifying the branch and remote name.
Instructions
Pull changes from remote
Input Schema
Name | Required | Description | Default |
---|---|---|---|
branch | Yes | Branch name | |
path | No | Path to repository. MUST be an absolute path (e.g., /Users/username/projects/my-repo) | |
remote | No | Remote name | origin |
Input Schema (JSON Schema)
{
"properties": {
"branch": {
"description": "Branch name",
"type": "string"
},
"path": {
"description": "Path to repository. MUST be an absolute path (e.g., /Users/username/projects/my-repo)",
"type": "string"
},
"remote": {
"default": "origin",
"description": "Remote name",
"type": "string"
}
},
"required": [
"branch"
],
"type": "object"
}