gpt4 book ai didi

git - 致命: Could not read password for 'https://OrganizationName@dev.azure.com' : terminal prompts disabled

转载 作者:行者123 更新时间:2023-12-02 10:08:41 25 4
gpt4 key购买 nike

我正在尝试 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 ”:

photo

在 git 推送中使用 System.AccessToken:

git push https://$env:SYSTEM_ACCESSTOKEN@dev.azure.com/......

并为构建用户授予推送权限(在存储库设置中):

enter image description here

关于git - 致命: Could not read password for 'https://OrganizationName@dev.azure.com' : terminal prompts disabled,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56733922/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com