git_pull
Fetch and integrate changes from remote Git repositories to keep local code synchronized with upstream developments.
Instructions
Fetch and integrate changes from remote repository
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| cwd | No | Repository directory | |
| remote | No | Remote name | origin |
| branch | No | Branch to pull (defaults to current branch) | |
| rebase | No | Rebase instead of merge |
Input Schema (JSON Schema)
{
"properties": {
"branch": {
"description": "Branch to pull (defaults to current branch)",
"type": "string"
},
"cwd": {
"description": "Repository directory",
"type": "string"
},
"rebase": {
"default": false,
"description": "Rebase instead of merge",
"type": "boolean"
},
"remote": {
"default": "origin",
"description": "Remote name",
"type": "string"
}
},
"type": "object"
}