Sam
Sam

Reputation: 141

Is it possible to migrate code from Bitbucket to TFS 2018.3 (On premise) with history?

We are trying to migrate the code from BitBucket to TFS (on-premise) 2018.3 and we are looking for a possible way to migrate the code with history.

We searched a lot and haven't found a way or tool for this process.

Are there any tools which help to create bidirectional sync between TFS and BitBucket?

Upvotes: 1

Views: 605

Answers (1)

PatrickLu-MSFT
PatrickLu-MSFT

Reputation: 51183

According to your description, seems you want to migrate code with git version control in bitbucket to TFVC version control.

In this case, we recommend you to try external tools like Git-TFS for importing.

git-tfs is a two-way bridge between TFS (Team Foundation Server) and git, similar to git-svn. It fetches TFS commits into a git repository, and lets you push your updates back to TFS.

Other things about the migration, you could take a look at our suggestions here: https://learn.microsoft.com/en-us/azure/devops/learn/git/migrate-from-tfvc-to-git#advanced-migrations

Upvotes: 1

Related Questions