JetBrains Rider 2017.3 Help

Update Project Dialog (Mercurial)

To access this dialog, click VCS in the main menu, and select Update Project from the popup. Alternatively, you can use the Ctrl+Alt+W shortcut.

In this dialog, select how you want to synchronize your local repository with the central storage.

OptionDescription
PullSelect this option to pull new changesets from the remote repository to the local one. This option can be deselected if the pull operation is performed by other means, for example via a script. The result is identical with that of running the hg pull command.
Update StrategyIn this section, select the synchronization method. This strategy will be applied to all Mercurial version control roots. The available options are:
  • Only Update: select this option to apply the update strategy. The local working directory will be updated to the latest available changeset. The result is identical with that of running the hg update command. It is recommended to select this option only if there are no conflicting changes or multiple heads, and if the latest changeset is a descendant or ancestor of the working directory's parent. Otherwise, the update opration will be aborted with errors.
  • Merge: select this option to apply the merge strategy. The latest changeset from the central repository will be incorporated into the current tip in your working directory. The result is identical with that of running the hg merge command.
    • Commit after merge without conflicts: select this option if you want to commit the resulting changeset after the merge operation has completed successfully.
  • Rebase: select this option to apply the rebase strategy. Your local changes will be detached, the working directory will be synchronized with the central repository, and then the local changes will be appended on top of the new remote changes.
Do not show this dialog in the futureSelect this option to have IntelliJ IDEA update your project silently in the future using the specified update strategy.

To invoke this dialog before an update:

  1. Open the Settings/Preferences by pressing Ctrl+Alt+S or by choosing File | Settings for Windows and Linux or JetBrains Rider | Preferences for macOS, and click Confirmation under Version Control.
  2. On the Confirmation page that opens, select the Update checkbox in the Display option dialogs when these commands are invoked area.
Last modified: 19 April 2018

See Also