foxora

Resolving conflicts

Resolve conflicts file by file, preserving both the intended local change and the incoming behavior before marking anything resolved.

On this page2
  1. Steps
  2. Expected result
Resolving conflicts
Studio interface in English. Sample data.

Steps

  1. Run git status in Terminal and list every unmerged path.
  2. Open each file in Editor and remove conflict markers after choosing the correct combined content.
  3. Run focused tests or render the affected output.
  4. Use git add with the exact resolved paths, then review git diff --cached before continuing the merge or rebase.

Expected result

Git reports no unmerged paths, the staged resolution contains the intended content, and relevant checks pass.

Note: Abort the merge or rebase only after confirming what Git will restore and preserving unrelated work.