如何将bitbucket中的repo同步到Visual Studio团队服务?

时间:2018-06-15 11:15:10

标签: azure-devops bitbucket azure-pipelines bitbucket-api azure-devops-rest-api

我对VSTS平台很新。在我的一个项目中,我试图将bitbucket源代码控制集成到VSTS。通过这种方式,我应该能够看到bitbucket上的更新到VSTS帐户上。

我尝试在VSTS上创建构建,但这只显示了所选的bitbucket存储库的提交历史记录。

有没有办法将VSTS上的所有bitbucket更改作为源代码控制进行管理?

2 个答案:

答案 0 :(得分:8)

要自动将bitbucket repo中的更改同步到VSTS git repo,您​​可以使用 VSTS构建定义来实现。详细步骤如下:

1。使用Bitbucket repo

创建构建定义

创建VSTS构建定义时 - >选择要同步的Bitbucket仓库 - >创建

enter image description here

2。启用持续集成

在构建定义中 - >触发标签 - >启用持续集成 - >包含*的所有分支。

enter image description here

3。使用脚本添加PowerShell任务以将bitbucket repo与VSTS git repo

同步

使用以下脚本添加PowerShell任务:

if ( $(git remote) -contains 'vsts' )
{git remote rm vsts
echo 'remove remote vsts'
}

$branch="$(Build.SourceBranch)".replace("refs/heads/","")
git remote add vsts https://Personal%20Access%20Token:PAT@account.visualstudio.com/project/_git/repo
git checkout $branch
git push vsts $branch -f

有关添加和配置PowerShell任务的详细步骤,如下所示:

修改您的构建定义 - >点击+为您的代理阶段添加任务 - >搜索powershell任务 - >点击添加 - >单击您添加的PowerShell任务 - >选择内联类型 - >然后在脚本选项中添加您的powershell脚本 - >保存构建定义。

enter image description here

enter image description here

现在无论你的bitbucket repo中更新了哪个分支,VSTS git repo都会自动同步。

Yo同步从VSTS git repo更改为bitbucket repo,您​​可以创建另一个CI构建来实现它。详细步骤如下:

1。使用VSTS git repo

创建CI构建

enter image description here 2.启用持续集成 enter image description here 3.使用以下方面添加PowerShell任务

if ( $(git remote) -contains 'bitbucket' )
{git remote rm bitbucket
echo 'remove remote bitbucket'
}

git remote add bitbucket https://username:password@bitbucket.org/username/repo.git 
$branch="$(Build.SourceBranch)".replace("refs/heads/","")
git checkout $branch
git push bitbucket $branch -f

答案 1 :(得分:0)

当您将Bitbucket帐户连接到VSTS时,您正在设置构建触发器以在拉取请求或合并上运行自动构建。这就是DevOps世界中所谓的“持续集成”。

enter image description here

请考虑阅读documentation以获取有关此主题的更多信息。

您将继续在Bitbucket上“管理”您的Bitbucket回购。它完全是分开的。如果您想通过VSTS管理所有内容,您应该将Bitbucket仓库导入您的VSTS帐户。

enter image description here