AlvinfromDiaspar
AlvinfromDiaspar

Reputation: 6834

Deploying to an Azure website

I am following this article....

Now I am finding the section about deploying to Azure a little ambiguous. So here is my question(s) which are not addressed in this document/article:

If

Upvotes: 0

Views: 86

Answers (1)

David Ebbo
David Ebbo

Reputation: 43203

'azure' is not the name of the branch, but the name of the remote (see this page if you're not familiar with the git remote concept). And you can choose to name the remote whatever you want.

As for how git push azure master causes a deployment, it is done because the repo on Azure has a post-receive hook which kicks the deployment. You can see this in Kudu console if you go to D:\home\site\repository\.git\hooks.

Upvotes: 1

Related Questions