0

I checked to see if my files exist in wwwroot and this is what it showed:

enter image description here

I don't know how to get my files here. Any advice?

1 Answers1

0

If you are using windows plan after deployed to azure you need to git clone your repo after you've initialized your local Git repo on the Azure Web App.

After created the Web app in azure you need to set a continuous deployment.

Clone your deployed web app by using the url

git clone <your_url_convert_to_clone>

Your every change, git add., git commit, and git push them back to the repo in Azure to see your changes there.

Refer here

If you are using linux app service please have a look here

Delliganesh Sevanesan
  • 4,146
  • 1
  • 5
  • 15