PyCharm 2017.3 Help

Setting Up a Local Mercurial Repository

Although Mercurial provides high flexibility in arranging data and your work with repositories, the following scenarios are most commonly used for setting up a local Mercurial repository:

  • Clone an existing remote repository and create a new project with the downloaded data.
  • Create a local repository which you can push to a remote location later, if necessary.

To clone a remote Mercurial repository

  1. On the main menu, choose VCS | Checkout from Version Control | Mercurial. The Clone Mercurial Repository dialog box opens.
  2. In the Mercurial Repository URL text box, type the URL of the remote repository which you want to clone.
  3. Click the Test Repository button next to the Mercurial Repository URL text box to check that connection to the remote repository can be established successfully.
  4. In the Parent Directory text box, specify the directory where you want PyCharm to create a folder for your local Mercurial repository. Use the Browse button browseButton.png button, if necessary.
  5. In the Directory Name text box, specify the name of the new folder into which the repository will be cloned. Click Clone.
  6. Create a new project based on the cloned data by accepting the corresponding suggestion displayed by PyCharm.

To create a local Mercurial repository

  1. Open the project you want to store in a repository.
  2. On the main menu, choose VCS | Import into Version Control | Create Mercurial Repository. The Create Mercurial Repository dialog box opens.
  3. Specify the location of the new repository.
    • To have the repository created in the project root, choose the Create repository for the whole project option. PyCharm will create the .hg directory in the project root folder.

      This option is selected by default.

    • To have a new repository created in another location, choose the Select where to create repository option and specify the path to the repository location in the text box below. Type the path manually or click the Browse button browseButton.png and choose the relevant folder in the Select directory for hg init dialog box that opens.
  4. Put the required files under Mercurial version control. The files appear in the Version Control tool window under the Default node.

    Note that if you specify Mercurial as the version control system for a directory in the Version Control dialog box, PyCharm will suggest to put each new file in this directory under Mercurial control.

Last modified: 28 March 2018

See Also