使用git clone命令从azure devops中检出多个存储库时出错

时间:2020-09-04 10:15:09

标签: git azure azure-devops azure-active-directory git-clone

我正在使用经典的Azure DevOps(不是Yaml)。我阅读了使用git clone命令来检查构建第二阶段中的第二个存储库。当我这样做时,我得到了没有描述的错误。我看到该文件夹​​中有可用的代码,但是仍然存在错误。因此,不确定是否一切正常。

git clone -c http.extraheader="AUTHORIZATION: bearer $(System.AccessToken)" https://abc.visualstudio.com/Aq/_git/CodeRepo --verbose

enter image description here

这些是我创建的命令 enter image description here

1 个答案:

答案 0 :(得分:0)

此解决方案对我有用- 我在经典管道中为此创建了一个PowerShell命令

$env:GIT_REDIRECT_STDERR = '2>&1'
git clone -c http.extraheader="AUTHORIZATION: bearer $(System.AccessToken)" https://abc.visualstudio.com/Aq/_git/CodeRepo