You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
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
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
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
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi, team!
How are you?
Has anyone migrated from GitLab to BitBucket? Any recommendation?
Thank you so much
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello,
Please try these steps.
https://nixhive.com/git-how-to-transfer-or-move-repository-between-accounts/
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.