- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试 merge develop
分支到master
使用 Azure Pipelines PowerShell 任务构建时的分支。
但是在执行命令git push
时,我收到此错误:
Fatal: Could not read password for 'https://OrganizationName@dev.azure.com': terminal prompts disabled
代码存储库是“Azure Repos Git”。
git checkout -b master
git config --global user.email "xxxxxxx@xxxx.xxx"
git config --global user.name "xxxxx"
git merge origin/develop
git push origin master
引用一些 URL 后,我创建了个人访问 token ,并将推送命令修改为 git push https://PAT@dev.azure.com/OrganizationName
,但仍然不起作用。
如果您找到此问题的解决方案,请告诉我。
最佳答案
正如您提到的,您需要使用 PAT,但以这种方式:
git push https://{PAT}@dev.azure.com/{organization}/{project}/_git/{repo-name}
<小时/>
另一个解决方案是在作业选项中“允许脚本访问 OAuth token ”:
在 git 推送中使用 System.AccessToken:
git push https://$env:SYSTEM_ACCESSTOKEN@dev.azure.com/......
并为构建用户授予推送权限(在存储库设置中):
关于git - 致命: Could not read password for 'https://OrganizationName@dev.azure.com' : terminal prompts disabled,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56733922/
我的 OSX 应用程序允许用户从他们的联系人列表中选择一个联系人并将详细信息加载到客户记录中。我正在使用 CNContactPicker 将联系人检索到 CNContact 记录中。我需要检索的字段之
我正在尝试 merge develop分支到master使用 Azure Pipelines PowerShell 任务构建时的分支。 但是在执行命令git push时,我收到此错误: Fatal:
我是一名优秀的程序员,十分优秀!