From 29af7af3b7782e40e773f4313049c597c80fc1cb Mon Sep 17 00:00:00 2001 From: awillslo Date: Fri, 15 Sep 2023 07:02:55 -0400 Subject: [PATCH] Update LAB_09a-Implement_Web_Apps.md --- Instructions/Labs/LAB_09a-Implement_Web_Apps.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Instructions/Labs/LAB_09a-Implement_Web_Apps.md b/Instructions/Labs/LAB_09a-Implement_Web_Apps.md index bb84235a..c9bf3c59 100644 --- a/Instructions/Labs/LAB_09a-Implement_Web_Apps.md +++ b/Instructions/Labs/LAB_09a-Implement_Web_Apps.md @@ -94,9 +94,9 @@ In this task, you will configure web app deployment settings. 1. On the **Settings** tab, in the **Source** drop-down list, select **Local Git** and click the **Save** button -1. On the **Deployment Center** blade, copy the **Git Clone Url** entry to Notepad. +1. On the **Deployment Center** blade, copy the **Git Clone Uri** entry to Notepad. - >**Note:** You will need the Git Clone Url value in the next task of this lab. + >**Note:** You will need the Git Clone Uri value in the next task of this lab. 1. On the **Deployment Center** blade, select the **Local Git/FTPS credentials** tab, in the **User Scope** section, specify the following settings, and click **Save**. @@ -131,10 +131,10 @@ In this task, you will deploy code to the staging deployment slot. Set-Location -Path $HOME/php-docs-hello-world/ ``` -1. From the Cloud Shell pane, run the following to add the remote git (make sure to replace the `[deployment_user_name]` and `[git_clone_url]` placeholders with the value of the **Deployment Credentials** user name and **Git Clone Url**, respectively, which you identified in previous task): +1. From the Cloud Shell pane, run the following to add the remote git (make sure to replace the `[deployment_user_name]` and `[git_clone_uri]` placeholders with the value of the **Deployment Credentials** user name and **Git Clone Uri**, respectively, which you identified in previous task): ```powershell - git remote add [deployment_user_name] [git_clone_url] + git remote add [deployment_user_name] [git_clone_uri] ``` >**Note**: The value following `git remote add` does not have to match the **Deployment Credentials** user name, but has to be unique