Skip to content

Commit 6300192

Browse files
authored
Merge pull request #107909 from lanicolas/patch-5
Aligning with Bash style guide
2 parents 962125a + e709785 commit 6300192

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

articles/azure-resource-manager/templates/deployment-tutorial-pipeline.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -66,18 +66,18 @@ This repository is referred to as a *remote repository*. Each of the developers
6666
```bash
6767
git clone https://github.com/[YourAccountName]/[YourGitHubRepositoryName]
6868
cd [YourGitHubRepositoryName]
69-
mkdir CreateWebApp
70-
cd CreateWebApp
69+
mkdir create_web_app
70+
cd create_web_app
7171
pwd
7272
```
7373

7474
Replace `[YourAccountName]` with your GitHub account name, and replace `[YourGitHubRepositoryName]` with your repository name you created in the previous procedure.
7575

76-
The _CreateWebApp_ folder is the folder where the template is stored. The `pwd` command shows the folder path. The path is where you save the template to in the following procedure.
76+
The _create_web_app_ folder is the folder where the template is stored. The `pwd` command shows the folder path. The path is where you save the template to in the following procedure.
7777

7878
### Download a Quickstart template
7979

80-
Instead of creating the templates, you can download the templates and save them to the _CreateWebApp_ folder.
80+
Instead of creating the templates, you can download the templates and save them to the _create_web_app_ folder.
8181

8282
* The main template: https://raw.githubusercontent.com/Azure/azure-docs-json-samples/master/get-started-deployment/linked-template/azuredeploy.json
8383
* The linked template: https://raw.githubusercontent.com/Azure/azure-docs-json-samples/master/get-started-deployment/linked-template/linkedStorageAccount.json
@@ -89,7 +89,7 @@ Both the folder name and the file names are used as they are in the pipeline. If
8989
The _azuredeploy.json_ has been added to the local repository. Next, you upload the template to the remote repository.
9090

9191
1. Open *Git Shell* or *Git Bash*, if it is not opened.
92-
1. Change directory to the _CreateWebApp_ folder in your local repository.
92+
1. Change directory to the _create_web_app_ folder in your local repository.
9393
1. Verify the _azuredeploy.json_ file is in the folder.
9494
1. Run the following command:
9595

@@ -101,7 +101,7 @@ The _azuredeploy.json_ has been added to the local repository. Next, you upload
101101

102102
You might get a warning about LF. You can ignore the warning. **main** is the main branch. You typically create a branch for each update. To simplify the tutorial, you use the main branch directly.
103103

104-
1. Browse to your GitHub repository from a browser. The URL is `https://github.com/[YourAccountName]/[YourGitHubRepository]`. You shall see the _CreateWebApp_ folder and the two files inside the folder.
104+
1. Browse to your GitHub repository from a browser. The URL is `https://github.com/[YourAccountName]/[YourGitHubRepository]`. You shall see the _create_web_app_ folder and the two files inside the folder.
105105
1. Select _azuredeploy.json_ to open the template.
106106
1. Select the **Raw** button. The URL begins with `https://raw.githubusercontent.com`.
107107
1. Make a copy of the URL. You need to provide this value when you configure the pipeline later in the tutorial.
@@ -145,7 +145,7 @@ Create a service connection that is used to deploy projects to Azure.
145145

146146
Until now, you have completed the following tasks. If you skip the previous sections because you are familiar with GitHub and DevOps, you must complete the tasks before you continue.
147147

148-
* Create a GitHub repository, and save the templates to the _CreateWebApp_ folder in the repository.
148+
* Create a GitHub repository, and save the templates to the _create_web_app_ folder in the repository.
149149
* Create a DevOps project, and create an Azure Resource Manager service connection.
150150

151151
To create a pipeline with a step to deploy a template:

0 commit comments

Comments
 (0)