从 bitbucket repo 自动复制到 azure repo

Auto copy in azure repo from bitbucket repo

是否可以自动同步存储库,例如通过管道? 我有 5 个存储库 Azure DevOps 这应该与 Bitbucket 中的完全相同(在 Bitbucket 中工作)

Auto copy in azure repo from bitbucket repo

是的,我们可以使用 Azure 管道将 Azure devops git 存储库与 bitbucket 存储库同步。

添加一个 powershell 任务来执行 git 命令行来同步更改:

git remote add bitbucket https://Username:password@bitbucket.org/xxx/xxxx.git HEAD:master
git checkout $branch
git push bitbucket $branch -f

此外,我们还可以为管道启用持续集成,这样Azure repo中有任何变化,它都会同步到bitbucket repo中。

请查看 and 了解更多详情。