For the complete documentation index, see llms.txt. This page is also available as Markdown.

Resolving conflicts

When you need to commit changes to a file that other users have also modified in the meantime, you must first merge the two sets of modifications together.

When the two sets of modifications do not overlap, merging is trivial — at least conceptually. But when they do overlap, they produce conflicts.

Teams comes with multiple strategies to help resolve conflicts in IDA database files:

Auto-resolve (if no conflicts)

  1. Launch IDA in a non-interactive batch mode, attempting to perform all merging automatically.

  2. If any conflict is discovered, bail out of the merge process, and don’t modify the local database.

Auto-resolve, prefer local

  1. Launch IDA in a non-interactive batch mode, attempting to perform all merging automatically.

  2. If a conflict is discovered, assume that the "local" change (i.e., the current user’s change) is the correct one, and apply that.

  3. Once all merging is done and conflicts are resolved, write those to the local database and exit IDA.

Auto-resolve, prefer remote

  1. Launch IDA in a non-interactive batch mode, attempting to perform all merging automatically.

  2. If a conflict is discovered, assume that the "remote" change (i.e., the change made by another user) is the correct one, and apply that.

  3. Once all merging is done and conflicts are resolved, write those to the local database and exit IDA.

Interactive merge mode

This is a manual merge mode.

  1. Launch IDA in an interactive, 3-pane mode, allowing the user to decide how to resolve each conflict.

  2. Once all merging is done and conflicts are resolved, exit IDA and write the changes to the local database.

Use local, discard remote

  1. Select the local database, ignoring all changes in the remote database.

No IDA process is run.

Use remote, discard local

  1. Select the remote database, ignoring all changes in the local database.

No IDA process is run.

Last updated

Was this helpful?