Skip to content
Release: Australia · Updated: 2026-03-12 · Official documentation · View source

Tutorial part 5: Clone the application on a different instance

Clone the application from the remote repository to develop it on another instance.

Before you begin

Complete Tutorial part 4: Install and use a third-party library.

Role required: admin

About this task

If you have access to another instance, you can install the application from the remote repository onto the instance to support development across instances.

Note: The instance and your user on the instance must meet the same requirements mentioned at the beginning of this tutorial.

Cloning is intended for developing an application on multiple non-production instances and managing it in a single repository. To publish an application and deploy it to a production instance, use the Application Repository. For more information, see ServiceNow application repository.

Procedure

  1. Push your changes to the remote repository.

    1. From the Activity Bar, select the Source Control view (
Image omitted: servicenow-ide-source-control-icon.png
Source Control\).
2.  From the Changes list, select the Stage All Tracked Changes icon \(
Image omitted: servicenow-ide-stage-icon.png
Stage all untracked changes\).
3.  From the Untracked Changes list, select the Stage All Untracked Changes icon \(
Image omitted: servicenow-ide-stage-icon.png
Stage all untracked changes\).
    All of your changes should be in the Staged Changes list.

4.  In the message box, enter a commit message.

5.  Select the Commit icon \(
Image omitted: servicenow-ide-commit-icon.png
Stage all untracked changes\).
6.  Select the More actions menu icon \(
Image omitted: servicenow-ide-more-actions-icon.png
More actions\) and select **Push**.
Image omitted: servicenow-ide-push-changes.png
Push the staged changes to the remote repository.
All of your changes are available in the remote repository. You or other developers can clone the application onto another instance.
  1. Log in to another ServiceNow instance.

  2. Navigate to All > App Development > ServiceNow IDE.

  3. Create a workspace or open an existing one.

  4. Configure basic authentication in the ServiceNow IDE to connect to the remote repository.

    1. Use one of the following keyboard shortcuts to open the command palette:

      • Windows: Ctrl-Shift-P
      • Mac: Cmd-Shift-P
        1. Enter Git: Set IDE Git credentials and press Enter.
    2. From the New Git credential form, select Basic auth.

    3. On the form, fill in the fields.

      FieldDescription
      Git repository URLThe HTTPS URL to the Git repository you created in GitHub. For example: https://github.com/<owner>/hello-world.git.
      Git usernameYour GitHub user name.
      Personal access tokenThe personal access token that you generated from GitHub.
    4. Select Submit.

  5. Clone the application.

    1. Use one of the following keyboard shortcuts to open the command palette:

      • Windows: Ctrl-Shift-P
      • Mac: Cmd-Shift-P
        1. Enter Git: Clone and press Enter.
    2. Enter the HTTPS URL to the remote Git repository and press Enter.

Result

The application is added to the instance with the files from the remote repository.

Image omitted: servicenow-ide-cloned-app.png
The Hello World application files cloned from the remote repository.

What to do next

Continue to Tutorial part 6: Learn more about the ServiceNow IDE.

Parent Topic:Getting started: Create your first application in the ServiceNow IDE