Azure Repos 的备份
Backup of Azure Repos
我需要将 Azure Devops Repos 备份到 Azure Blob 或 Sharepoint 库。
我使用 this 方法创建了一个管道。但是在将 Repo 复制到工作目录时,我的管道在第一步中失败了。错误:400 错误:“致命:无法访问 {Repo 名称}”
- task: CmdLine@2
inputs:
script: 'git clone --mirror https://{Your PAT}@dev.azure.com/{OrgName}/{ProjectName}/_git/{RepoName}'
我使用的 PAT 具有完全访问权限。我也尝试过 Powershell 方法,但它也给出了同样的错误。
电源外壳:
$MyPat = 'Access Token'
$B64Pat = [Convert]::ToBase64String([System.Text.Encoding]::UTF8.GetBytes(":$MyPat"))
git -c http.extraHeader="Authorization: Basic $B64Pat" clone "https://dev.azure.com/<Org>/<Project>/_git/<Repo>"
非常感谢与此相关的任何帮助或指导。
正如 zainul 回复的那样,url 中的 space 应该被替换为 '%20' 如果其中有白色 spaces OrgName
或 ProjectName
.
我需要将 Azure Devops Repos 备份到 Azure Blob 或 Sharepoint 库。 我使用 this 方法创建了一个管道。但是在将 Repo 复制到工作目录时,我的管道在第一步中失败了。错误:400 错误:“致命:无法访问 {Repo 名称}”
- task: CmdLine@2
inputs:
script: 'git clone --mirror https://{Your PAT}@dev.azure.com/{OrgName}/{ProjectName}/_git/{RepoName}'
我使用的 PAT 具有完全访问权限。我也尝试过 Powershell 方法,但它也给出了同样的错误。 电源外壳:
$MyPat = 'Access Token'
$B64Pat = [Convert]::ToBase64String([System.Text.Encoding]::UTF8.GetBytes(":$MyPat"))
git -c http.extraHeader="Authorization: Basic $B64Pat" clone "https://dev.azure.com/<Org>/<Project>/_git/<Repo>"
非常感谢与此相关的任何帮助或指导。
正如 zainul 回复的那样,url 中的 space 应该被替换为 '%20' 如果其中有白色 spaces OrgName
或 ProjectName
.