gitPull
Pull changes from a remote repository into the current branch, with options for rebase to maintain a linear history.
Instructions
Pull changes from a remote into the current branch. Defaults to origin with merge. Use rebase: true for linear history.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| remote | No | Remote name (default: origin) | |
| branch | No | Remote branch to pull from (default: tracking branch for current branch) | |
| rebase | No | Rebase local commits on top of remote changes instead of merging. Default: false. |