WebStorm 2018.1 Help

Updating Local Information in CVS

From the Updating Local Information topic, you have learnt the general procedure. CVS integration provides a special Update File / Directory dialog box with the options that map directly to the corresponding CVS command-line options of the update command. Refer to the CVS documentation for details.

This section will consider the CVS-specific procedure and several of the options in terms of their presentation in WebStorm.

To update local information

  1. Select one or more files and/or directories in any navigation view (for example, Project Tool Window).
  2. On the main menu, select VCS | Update Project or on the context menu of the selection choose CVS | Update File (Directory). The Update dialog for a project or file opens. In case of project update, select CVS tab.
  3. Specify the following options:

    Branch Merging

    You can choose to merge your local file(s) with the counterpart(s) in one or two CVS branches. In the CVS command-line interface, this is the -j option.

    The option Don't Merge is selected by default, as merging across branches is not commonly needed. If you choose one of the other options, one or both of the text fields are enabled (depending on the choice of options). Clicking Browse browseButton.png next to each field opens the Select Tag dialog box which lists all the branch tags maintained by the repository on the CVS server. Locate the branch you want to merge with, select it in the list, and click OK.

    Use Version

    You can optionally update your local system from some different revision. You can choose a revision by its tag or by its date. The Default option synchronizes with your file's current revision, as this is the most common synchronization. The other options for Use Version are:

    • By tag (-r):When updating a single file, you can choose the revision either by Revision or Tag. When you choose this option, the text field and corresponding ellipsis button are enabled. Enter a revision number or tag in the text field, or click the ellipsis button and select either a revision or a tag in the resulting dialog.

      When updating multiple files (selected individually, or when invoking update on a directory), you can only select the revision by Tag.
    • By date (-d): You can update from the revision of a specific date. This is possible whether you are invoking update on one file or multiple files or directories. When you choose this option, the date defaults to the current date. To specify a different date, click the ellipsis button and specify the desired date in the Choose Date dialog which appears.

    Reset sticky data (-A)

    If the last checkout or update of the selected file(s) was from some revision that was specified by tag or date, the tag/date information is sticky for the file(s). If you now want to update these sticky-tagged files from the HEAD revision, select this option in combination with selecting the Default option in Use Version so that the sticky information is removed.

    Change keyword substitution to

    If checked, this is converted to the -k CVS parameter. Refer to CVS Options: Default keyword substitution for text files for details.

    Do not show this dialog in the future

    Select this option if you want the update operation take place silently. For details see CVS Options.

    To have WebStorm show this dialog box before update again:

    1. Open the Version Control - Confirmation page of the Settings dialog box.
    2. In the Display Option dialogs when these commands are invoked area, select the Update checkbox.

Last modified: 20 July 2018

See Also