get_pending_changes
Review all pending changes to enable the next git push. Marks changes as reviewed for a single push attempt.
Instructions
Get pending changes that need to be reviewed before pushing. This tool MUST be called before git_push to enable pushing.
USAGE: Call this tool to view and review all pending changes. This will mark changes as reviewed, allowing git_push to proceed. The review status is reset after each push attempt.
By default, this tool returns ALL pending changes (limit=1000). Use smaller limit values for pagination if needed.
Examples: {} - View and review ALL changes (default) {"limit": 10, "offset": 0} - View and review first 10 changes {"limit": 50} - View and review first 50 changes
NOTE: Review status is valid only for the next push attempt. You may need to review again for subsequent pushes.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Limit count (1-1000), default 1000 (shows all changes). | |
| offset | No | Offset, default 0 |