0

我正在学习 Azure,据我观察,微软官方文档的很大一部分要么已过时,要么与现实不符,要么由于错误而无法按预期工作。

一个例子是我研究的文章,创建部署槽(在 Azure 上)

在这里,我坚持以下几点:

在此处输入图像描述

第一个问题是,“Cloud Shell”到底是什么东西,我在 Azure 门户中没有找到这样的东西,所以我想他们会谈论Console来自该Development Tools部分的内容......好吧,让我们开始吧:

D:\home\demoapp\app-service-web-dotnet-get-started>git remote add production https://myusername@mytestslots.scm.azurewebsites.net:443/MyTestSlots.git

D:\home\demoapp\app-service-web-dotnet-get-started>git push production
Logon failed, use ctrl+c to cancel basic credential prompt.
fatal: could not read Password for 'https://myusername@mytestslots.scm.azurewebsites.net:443': Bad file descriptor

所以,好吧,我没有被要求输入密码!?!该怎么办?

我试过了

git config --global core.askpass /usr/libexec/git-core/git-gui--askpass

错误:无法生成 /usr/libexec/git-core/git-gui--askpass:没有这样的文件或目录

试过了

git config --global core.askpass "C:\Program Files\Git\\mingw64\libexec\git-core\git-gui--askpass"

但同样

错误:无法生成 C:\Program Files\Git\mingw64\libexec\git-core\git-gui--askpass: 没有这样的文件或目录

请帮忙。

4

1 回答 1

1

要回答有关 的问题Cloud Shell in Azure Portal,请参阅此链接:https ://docs.microsoft.com/en-us/azure/cloud-shell/quickstart 。

关于您对 Microsoft Learn 内容质量的评论,您可以通过导航到页面底部来提供反馈 ( https://docs.microsoft.com/en-us/learn/modules/stage-deploy-app- service-deployment-slots/3-exercise-create-deployment-slots ) 然后点击reporting an issue. 这会将您重定向到 this link

您可以在那里提供详细的反馈。根据我的经验,微软员工对反馈非常敏感。

于 2019-09-05T09:12:33.127 回答