PhpStorm 2018.2 Help

Resolving Text Conflicts

If a conflict occurs in a file under the Subversion version control, conflict markers are added to the conflicting file, and three auxiliary unversioned files are created in your local working copy:

  • filename.mine: the copy of your local file without conflict markers.

  • filename.rOld: the base revision you have last synchronized to.

  • filename.rNew: the latest version on the server.

Conflicting files are marked with red in the Local Changes tab of the Version Control tool window. In the Update Info tab, they are grouped in the Merged with conflicts list and are also marked with red.

With PhpStorm, you can resolve conflicts in two ways:

  • Semi-automatically, using a merge tool.

  • Manually in the editor. After that, you need to manually mark the processed files as conflicts-free.

On this page:

To resolve a text conflict using the merge tool

  1. In the Local Changes tab of the Version Control tool window, select the conflicting file:

    img

  2. On the main VCS menu, or on the context menu of the selection, choose Subversion | Resolve Text Conflict. The Files Merged with Conflicts dialog appears.

  3. If you want to accept the server version and overwrite your local changes, click Accept Theirs. If you want to force your changes to the repository, click Accept Yours. Clicking Merge opens the merge tool, where you can accept or discard each change individually. As a result, the file is automatically marked as resolved, and auxiliary files are deleted.
  4. Once the conflicts have been successfully resolved, commit your local version to the repository.

To resolve a text conflict manually

Open the conflicting file in the editor, and do one of the following:

  • Edit the contents within the conflict markers as required.

  • Copy one of the auxiliary files on top of your working file.

To mark a file as resolved

  1. Do one of the following:
    • Select the file in the Project tree or in the Local Changes tab of the Version Control tool window, and choose Subversion, and then choose Mark Resolved on the context menu of the selection.

    • With the conflicting file opened in the editor, right-click the mouse anywhere in the editor tab. On the context menu choose Subversion, and then choose Mark Resolved.

    • On the main menu, choose VCS | Subversion | Mark Resolved..

  2. In the Mark Resolved dialog box that opens select the file in question.

  3. Click the Mark Resolved button.

Last modified: 21 November 2018

See Also