通过 PAT 从 TFS 拉取时出现身份验证失败错误

问题描述 投票:0回答:1

我有一个包含一些源文件的 TFS 存储库。使用用户名和密码结帐按预期工作。但是当我尝试使用 PAT 时,它显示以下错误。

git -c http.sslVerify=false clone https://<username>:<PAT>@<Repo-URL>
Cloning into 'Project'...
fatal: Authentication failed for 'Repo-URL'

PAT拥有全部权限 有谁知道这里的确切问题是什么?

git tfs git-clone
1个回答
0
投票

在存储库 URL 中添加

<username>
时,我可以重现身份验证失败。 当我直接使用 PAT 进行克隆时,在存储库 URL 中没有任何用户名的情况下,它可以正常工作。

$PAT = "xxxxxx"

git clone http://$PAT@aztfs/DefaultCollection/MyProject/_git/MyRepo

Image

© www.soinside.com 2019 - 2024. All rights reserved.