Merge a feature branch back into main with poly branch merge, including interactive and pre-defined conflict resolution.
poly branch merge is the CLI-native counterpart to merging in the Agent Studio web UI. It brings everything you’ve changed on the current branch back onto main, surfaces any conflicts in a structured table, and lets you resolve them either interactively or from a JSON file.
For the broader branching workflow (creating, switching, listing, deleting branches), see the poly branch section of the CLI reference. For the team-level guardrails around branching and merging, see Multi-user workflows and guardrails.
When to use it
You’ll typically reach forpoly branch merge at the end of a feature loop:
- Create a branch with
poly branch create my-feature(seepoly branch create). - Iterate locally, pushing with
poly push(see Working locally). - Test with
poly chatagainst the branch’s pushed state. - Merge back to
mainwithpoly branch merge '<message>'— described on this page. - Optionally deploy through Agent Studio.
Basic usage
poly branch merge requires a merge message and merges the current branch into main. Switch to the source branch first if you aren’t on it.
main. Run poly pull afterwards if you need to refresh local state.
| Argument | Required | Description |
|---|---|---|
message | yes | Merge commit message. Quote it if it contains spaces. |
--interactive, -i | no | Resolve conflicts in an interactive prompt. |
--resolutions <source> | no | Pre-defined resolutions as a JSON file path, inline JSON string, or - for stdin. |
--path <dir> | no | Project base path. Defaults to the current working directory. |
--json | no | Print a single JSON object on stdout (machine-readable). |
--verbose | no | Show full error tracebacks for debugging. |
Conflicts
If the merge has conflicts, the command prints a conflict table and exits with a non-zero status code. The table shows, for each conflicting field:- Path — the resource and field that conflicts (for example
topics > Booking > content) - Base / Ours / Theirs — the original value and the two competing values
- Auto-merged value — what the ADK would produce by line-merging the two sides
- Auto-mergeable — whether the auto-merged value contains any unresolved markers
--interactive and accept the suggestions, or pre-populate --resolutions with the auto-merge values.
--interactive / -i
Interactive mode walks you through each conflict and asks how to resolve it. For every conflict you can:
- accept the auto-merge (when available)
- pick
main(ours) - pick branch (
theirs) - pick
base(revert to the original value) - open the value in your
$EDITORor$VISUALfor free-form editing
--resolutions <source>
Use --resolutions to supply pre-defined resolutions non-interactively. The source can be:
- a path to a JSON file
- a literal JSON string
-to read JSON from stdin
--resolutions with --interactive to seed an interactive session — pre-defined choices are applied automatically and you’ll only be prompted for the conflicts they don’t cover.
Resolution file format
--resolutions expects a JSON array of objects:
| Field | Description |
|---|---|
path | List of strings identifying the conflicted field. Match the Path column from the conflict table. |
strategy | One of "ours" (keep main), "theirs" (keep branch), or "base" (revert to the original). |
value | Optional custom value. Only honored with the "theirs" strategy. |
poly branch merge once to surface the conflicts, then writing a JSON file that addresses each path row.
After a successful merge
- The CLI switches your local checkout to
main. - Run
poly pullif you need to refresh local state to match the post-mergemain. - Run
poly chatagainstmain(which falls back to the sandbox environment) to smoke-test the merged result. - If you’re ready to ship, follow up with
poly deploymentsto promote the merged state to a live environment.
Merging through the Agent Studio web UI
You can also merge through the Agent Studio interface:- Open the project in Agent Studio.
- Switch to the branch.
- Click Merge.
Troubleshooting
| Symptom | Likely cause | Fix |
|---|---|---|
Merge message is required | You ran poly branch merge with no message argument. | Pass a quoted message: poly branch merge 'Describe the merge'. |
| Conflict table appears and the command exits non-zero | One or more fields conflict between branch and main. | Re-run with --interactive or supply --resolutions. |
[Errno 22] Invalid argument during interactive prompt | The shell isn’t a TTY (CI, scripts, non-interactive containers). | Run interactively, or use --resolutions with a pre-built JSON file. |
| Editor doesn’t open in interactive mode | $EDITOR and $VISUAL are unset. | Export one of them before running the merge. |
| Local changes block the merge | You have unpushed work on the source branch. | Run poly push first, or poly revert to discard. |
Related references
Tests
Validate agent behavior with conversation tests before merging.
Tooling
IDE extensions and AI coding tools that integrate with the ADK workflow.
Multi-user workflows and guardrails
How branches, merges, and validation interact across a team.

