ACE Git — remotes + merge/conflict
Multi-remote
- Enter remote name (
origin,upstream, …) + URL. - Click Set Remote.
- Use the remote dropdown to choose which remote Fetch / Pull / Push use.
Merge + conflicts
- Stay on the branch that should receive changes (e.g.
master). - In Merge, pick the other branch (e.g.
ACE_BRANCH) → Merge. - If conflicts appear:
- Open — edit markers in the editor
- Ours — keep current branch version
- Theirs — take incoming branch version
- Mark — after manual edit, stage as resolved
- When the conflict list is empty → Continue
- To cancel the merge → Abort
Pull conflicts use the same conflict list + Continue/Abort flow.
Quick checks
- Two remotes (
origin+upstream) switch in the dropdown; Push hits the selected one. - Merge with overlapping edits shows conflict rows.
- Abort restores pre-merge state.
- Continue creates the merge commit after all conflicts are resolved.
