我有一个包含一些源文件的 TFS 存储库。使用用户名和密码结帐按预期工作。但是当我尝试使用 PAT 时,它显示以下错误。
git -c http.sslVerify=false clone https://<username>:<PAT>@<Repo-URL> Cloning into 'Project'... fatal: Authentication failed for 'Repo-URL'
PAT拥有全部权限 有谁知道这里的确切问题是什么?
在存储库 URL 中添加
<username>
$PAT = "xxxxxx" git clone http://$PAT@aztfs/DefaultCollection/MyProject/_git/MyRepo