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
Push your changes to the remote repository.
- From the Activity Bar, select the Source Control view (
Source Control\).
2. From the Changes list, select the Stage All Tracked Changes icon \(
Stage all untracked changes\).
3. From the Untracked Changes list, select the Stage All Untracked Changes icon \(
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 \(
Stage all untracked changes\).
6. Select the More actions menu icon \(
More actions\) and select **Push**.
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.
Log in to another ServiceNow instance.
Navigate to All > App Development > ServiceNow IDE.
Create a workspace or open an existing one.
Configure basic authentication in the ServiceNow IDE to connect to the remote repository.
Use one of the following keyboard shortcuts to open the command palette:
- Windows: Ctrl-Shift-P
- Mac: Cmd-Shift-P
- Enter
Git: Set IDE Git credentialsand press Enter.
- Enter
From the New Git credential form, select Basic auth.
On the form, fill in the fields.
Field Description Git repository URL The HTTPS URL to the Git repository you created in GitHub. For example: https://github.com/<owner>/hello-world.git.Git username Your GitHub user name. Personal access token The personal access token that you generated from GitHub. Select Submit.
Clone the application.
Use one of the following keyboard shortcuts to open the command palette:
- Windows: Ctrl-Shift-P
- Mac: Cmd-Shift-P
- Enter
Git: Cloneand press Enter.
- Enter
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.
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