Skip to content

Commit 7359321

Browse files
committed
line endings
1 parent 4919bfe commit 7359321

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

articles/app-service/includes/tutorial-dotnetcore-sqldb-app/deploy-local-git.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,17 +20,17 @@ You can deploy your application code from a local Git repository to Azure by con
2020
Next, configure the deployment source for your web app to be local Git using the `az webapp deployment source` command.
2121

2222
```azurecli
23-
az webapp deployment source config-local-git
24-
--name <your-app-name>
23+
az webapp deployment source config-local-git \
24+
--name <your-app-name> \
2525
--resource-group msdocs-core-sql
2626
```
2727

2828
Retrieve the deployment credentials for your application. These will be needed for Git to authenticate to Azure when you push code to Azure in a later step.
2929

3030
```azurecli
31-
az webapp deployment list-publishing-credentials
32-
--name <your-app-name>
33-
--resource-group msdocs-core-sql
31+
az webapp deployment list-publishing-credentials \
32+
--name <your-app-name> \
33+
--resource-group msdocs-core-sql \
3434
--query "{Username:publishingUserName, Password:publishingPassword}"
3535
```
3636

0 commit comments

Comments
 (0)