Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in
Celebration

Earn badges and make progress

You're on your way to the next level! Join the Kudos program to earn points and save your progress.

Deleted user Avatar
Deleted user

Level 1: Seed

25 / 150 points

Next: Root

Avatar

1 badge earned

Collect

Participate in fun challenges

Challenges come and go, but your rewards stay with you. Do more to earn more!

Challenges
Coins

Gift kudos to your peers

What goes around comes around! Share the love by gifting kudos to your peers.

Recognition
Ribbon

Rise up in the ranks

Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!

Leaderboard

How to migrate to Bitbucket from GitLab, Gerrit, ...

Hello,

in my company there are multiple GIT solutions in place right now. We think about buying Bitbucket on a large scale and use it as the only solution but we have to consider how to migrate the projects from Gerrit, Gitlab, ... into Bitbucket.

Are there any migration/import tools available to migrate the GIT repositories AND the metadata (like pull requests, code review findings) seamlessly into Bitbucket?

I was searching in the Atlassian documentation and via google but the only thing I found was some guidelines or tool features on how to import the GIT repositories into Bitbucket from some other system like GitHub. I am missing the metadata import here.

Please share the necessary information with me.

Thank you

3 answers

1) Create the repository in Bitbucket using the UI

2) Clone the Gitlab repository using the "--bare" option

git clone --bare GITLAB-URL

3) Add the Bitbucket remote

cd REPO-NAME
git remote add bitbucket BITBUCKET-URL

4) Push all commits, branches and tags to Bitbucket

git push --all bitbucket
git push --tags bitbucket

5) Remove the temp repository

cd ..
rm -rf REPO-NAME

Source: https://stackoverflow.com/a/44111370/1509986

1 vote
Ana Retamal
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
Jun 08, 2018

Hi Martin, you can import the source code and history to Bitbucket Server as explained at Importing code from an existing project. However, you'll need to manually recreate all metadata such as permissions, comments, pull requests etc. either from the Bitbucket Server GUI or programmatically using the Bitbucket API. We have a feature request to make this process easier, and you can vote for it at BSERV-3555. All other data such as repo history is stored in the .git directory.

Let us know if you have any questions!

Best regards,

Ana

Ok. That was the information I already found myself. Regarding the API to create pull requests and other related data:

I guess it is not possible to create pull requests and comments/tasks with a specific timestamp so that I can manually recreate the very same data like e.g. stored in GitLab.
I assume when I create a PR, comment or task the timestamp of that element is given by the system and cannot be changed, correct?

Hi Marko

Did you migrate to bitbucket? We're about to migrate as well and I would really appreciate some help. Can I get in touch with you somehow?

Best regards,

Colin

Hi Colin,

I cannot help you because we finally decided to even go to a different GIT system than Bitbucket, Not because of functional reasons more because of organisational reasons.

Good luck for your migration.

Hi, team!

How are you?

Has anyone migrated from GitLab to BitBucket? Any recommendation?

Thank you so much

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events