Reputation: 23635
I thought I created a connection between my Azure Devops project and my sources in bitbucket but it looks like I imported it, so only a one time import.
Is it possible to just have my sources in bitbucket?
Upvotes: 0
Views: 1536
Reputation: 51143
What you have done actually is importing an existing Git repo from Bitbucket into a new or empty existing repo in your project in Azure DevOps.
Is it possible to just have my sources in bitbucket?
Only for CI/CD your could.
If your repo is on premise bitbucket server, please choose “other
git” , then create a generic Git service connection , enter the URL
and credentials.
Note: Currently, Azure Pipelines only integrates with Git repos from Bitbucket. Mercurial repos in Bitbucket were not being shown.
In my opinion: Most online repos accomplish the same basic things: allow you to store code, collaborate with others, and make your code universally accessible to other systems.
Unless BitBucket Repo bring some unique capabilities you wanted to take advantage of. Otherwise I would suggest you simply migrate the repo and manage it in Azure DevOps directly.
Upvotes: 2
Reputation: 59035
No. And yes.
No, you can't use Azure DevOps repository management UI to work with a repo hosted in Bitbucket. You use Bitbucket to manage repos hosted in Bitbucket.
Yes, Azure DevOps integrates with Bitbucket for continuous integration/continuous delivery purposes.
Upvotes: 2