我正在使用Azure cli。我已经使用azure cli命令创建了应用程序。 font-weight
。
现在我想使用Azure CLI将其与我的git帐户连接。
答案 0 :(得分:1)
如果您使用新的CLI 2.0(https://github.com/Azure/azure-cli),您应该可以使用以下命令:
az appservice web source-control config-local-git -g {group} -n {webapp name}
git remote add azure https://<deploy_user_name>@MyApp.scm.azurewebsites.net/MyApp.git
如果这不适合您的方案,请向我们的回购发布功能请求。
答案 1 :(得分:0)
如果您希望自定义持续部署,我担心现在无法在这种情况下使用Azure CLI。 请使用Azure门户网站来执行此操作 - 详细信息为here
您还可以使用Visual Studio Team Services并拥有编译网站,然后执行您的ARM模板,通过发布管理来更新环境。