git_pull
Synchronize local repository with remote changes by pulling updates from a specified branch using the MCP Git Server. Simplify version control for Git-based projects.
Instructions
Pull changes from remote repository
Input Schema
Name | Required | Description | Default |
---|---|---|---|
branch | No | ||
remote | No | origin | |
repo_path | Yes |
Input Schema (JSON Schema)
{
"properties": {
"branch": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Branch"
},
"remote": {
"default": "origin",
"title": "Remote",
"type": "string"
},
"repo_path": {
"title": "Repo Path",
"type": "string"
}
},
"required": [
"repo_path"
],
"title": "GitPull",
"type": "object"
}