You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/app-service/includes/tutorial-dotnetcore-sqldb-app/deploy-local-git.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,17 +20,17 @@ You can deploy your application code from a local Git repository to Azure by con
20
20
Next, configure the deployment source for your web app to be local Git using the `az webapp deployment source` command.
21
21
22
22
```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> \
25
25
--resource-group msdocs-core-sql
26
26
```
27
27
28
28
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.
29
29
30
30
```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 \
0 commit comments