我想使用git和Powershell编写Azure WebSite创建和部署脚本。
通过cmdlet,我可以创建网站并更改主机方案模式。 但我不知道,使用powershell cmdlet,如何编写“从源代码管理设置部署”的脚本' Azure WebSite的WebSite操作。
答案 0 :(得分:2)
如果您只想在网站上启用git存储库,请使用:
new-azurewebsite mynewwebsite -git
如果要启用github集成,则可以使用以下内容:
$creds = Get-Credential
new-azurewebsite mynewwebsite -github -githubrepository youraccount/yourreponame -githubcredentials $creds
在这两种情况下,您都应该位于要创建存储库本地副本的目录中,并确保git.exe位于路径中。