使用 git clone 命令从 azure devops 检查多个存储库时出错
Error in checking out multiple repository from azure devops using git clone command
我在使用经典的 Azure DevOps(不是 yaml)。我读到使用 git clone
命令在构建的第二阶段检查第二个存储库。当我这样做时,我收到了这个没有描述的错误。我看到代码在文件夹中可用,但仍然存在错误。所以,不确定是否一切顺利。
git clone -c http.extraheader="AUTHORIZATION: bearer $(System.AccessToken)" https://abc.visualstudio.com/Aq/_git/CodeRepo --verbose
这些是我创建的命令
这个解决方案对我有用 -
我在我的经典管道中为此创建了一个 PowerShell 命令
$env:GIT_REDIRECT_STDERR = '2>&1'
git clone -c http.extraheader="AUTHORIZATION: bearer $(System.AccessToken)" https://abc.visualstudio.com/Aq/_git/CodeRepo
我在使用经典的 Azure DevOps(不是 yaml)。我读到使用 git clone
命令在构建的第二阶段检查第二个存储库。当我这样做时,我收到了这个没有描述的错误。我看到代码在文件夹中可用,但仍然存在错误。所以,不确定是否一切顺利。
git clone -c http.extraheader="AUTHORIZATION: bearer $(System.AccessToken)" https://abc.visualstudio.com/Aq/_git/CodeRepo --verbose
这些是我创建的命令
这个解决方案对我有用 - 我在我的经典管道中为此创建了一个 PowerShell 命令
$env:GIT_REDIRECT_STDERR = '2>&1'
git clone -c http.extraheader="AUTHORIZATION: bearer $(System.AccessToken)" https://abc.visualstudio.com/Aq/_git/CodeRepo