AnyLogic
Expand
Font size

Working with Git repositories

This article covers how to create, clone, and add Git repositories, that is, how to set up them for your AnyLogic models.

To start working with Git in AnyLogic, switch to the Git perspective by clicking on the Git icon in the top right corner of the AnyLogic application window.

Before you start

You work with Git repositories in the Git Repositories view. By default, it’s located on the left side of the Git perspective.

AnyLogic: The Git Repositories view

A Git repository is a folder that contains the files and history of a Git-managed project, that is, the repository stores all objects that make up the history of the project.

To work with the contents of a Git repository in the AnyLogic Git perspective, add the repository to the list. You can either add a repository that exists on your computer, clone a remote repository, or create a new one.

Setting up the repository

Adding a local repository

Your computer may already have a local Git repository. This can happen if you already have a Git client or an application with Git support installed. In this case, you will need to reuse this repository in AnyLogic.

To add a local repository

  1. In the empty Git Repositories view, click Add an existing local repository, or
    Click the AnyLogic icon: Add an existing local Git Repository to this view Add icon on the view toolbar.
  2. The Add Git Repositories dialog will appear.

    AnyLogic: The Add Git Repositories dialog

    Start by specifying the directory where you want to search for repositories. You can enter the path manually in the Directory edit box, or click Browse and search for Git repositories on your local file system.
    If you want to search for Git modules deeper within the subdirectories, select the Look for nested repositories option.
    To avoid searching for repositories in hidden directories, select the Skip hidden directories option.
  3. The Search results will display the Git repositories found in the specified directory.
    • Select or clear the checkboxes next to the found repositories to specify which of them should be added to the AnyLogic Git perspective.
    • Use the edit box at the top of this section to narrow down the results by specifying a filter expression.
    • Use the Check All Repositories or Uncheck All Repositories options to manipulate the selection.
  4. Once you have selected all the repositories you want to add, click Add.

Cloning a repository

When you “clone” a repository, you create a local copy of a repository that exists on a remote server, such as GitHub. This means that you download all the files and directories available in the remote repository to your computer. You also get a copy of the entire history of the repository, including all versions of every file and folder for the model.

To clone a repository

  1. In the empty Git Repositories view, click Clone a Git repository, or
    Click the AnyLogic icon: Clone a Git Repository and add this clone to this view Clone icon on the view toolbar.
  2. The Clone Git Repositories dialog will appear.

    AnyLogic: The Clone Git Repositories dialog

    On the first page of the dialog, configure the connection to the remote repository:
    • URI — The full URI of the remote repository or the path on the file system. This field is automatically synchronized with the other fields. Optionally, click Local Folder or Local Bundle File to browse for a repository or a Git bundle file on the computer.
    • Host — The name of the remote host. Empty if cloning from the file system.
    • Repository path — The path to the remote repository or to the file system.
    • Protocol — One of the supported protocols (file, ftp, git, http, https, sftp, ssh).
    • User — The username to use for authentication.
    • Password — The password to use for authentication.
    • Store in Secure Store — Whether to store the password in the application’s internal secure store.
  3. Click Next.
  4. On the next page, select which branches you want to clone.

    AnyLogic: The Clone Git Repositories: Branch selection

    If you are not sure which branches you need, click Select All (or Deselect to do the opposite).
    You can filter the branches by their name by typing in the edit box control above the list. The selected branches are always shown in the list (they are not filtered).
  5. Optionally, specify Tag fetching strategy (see the Git documentation for more information on Git tags).
  6. Click Next.
  7. On the next page, specify where you want to store the repository on the local file system, and set some initial settings:

    AnyLogic: The Clone Git Repositories: Local destination

    • Directory — The directory that will contain the Git repository. It will be created automatically if it does not already exist.
    • Initial branch — Select which local branch to create and check out initially.
    • Clone submodules — Specify whether all the Git submodules will be cloned with the parent repository.
    • Remote name — Specify a name for the remote repository. The default is origin.
  8. Click Finish.

Creating a repository

By creating a new repository, you start tracking changes in a directory that hosts your model, building a history over time. This allows you to save versions of your model, which you can access when needed.

AnyLogic allows creating local Git repositories.

To create a repository

  1. In the empty Git Repositories view, click Create a new local Git repository, or
    Click the AnyLogic icon: Create a new Git Repository and add it to this view Create icon on the view toolbar.
  2. The Create a Git Repository dialog will appear.

    AnyLogic: The Create a Git Repository dialog

    Specify the path to the directory of the repository in the Repository Directory edit box, or click Browse and locate it on your computer in the subsequent dialog.
    Set the default branch name in the Default branch name field.
    If you select the Create as bare repository checkbox, the new repository will not have a working directory. You then can only add content to it by pushing changes from another repository. Its intended use is as a remote repository for sharing solid code.
  3. Click Create.

Pasting repositories

You can paste the local file system path of a Git repository from the clipboard into the Git repositories view. To do that, copy the repository path (local or remote) to your clipboard, right-click in the Git repositories view, then select Paste Repository Path or URI. This will open the cloning dialog with most of the settings already configured.

How can we improve this article?