Hello,
We have a project that's under source control. The repository is a Bonobo server. We would like to transfer the source code along with the entire history over to BitBucket. We can get to the point where we are logged into our BitBucket account and we can create a new project. Now we would like to know: how do we import the project sitting on the Bonobo server along with its history over to our new BitBucket project?
Is there a step by step guide that we can follow?
We can also work in SourceTree if importing from the Bonobo server can be done from there.
Hi @Gibran Shah,
As of Bitbucket Server 4.9 you can also import repositories using the web interface with our new Repository Importer
The git repositories are easily moved - you should be able to find a complete write-up. We have an automation tool that does this. What it essentially does when migrating repos from git to git is:
git clone --mirror src-repo-spec
git remote add target target-spec
git push --all target
git push --tags target
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks Rich,
I get stuck on step #2: git remote add target target-spec:
add to target fails.png
For target-spec, I enter "https://gibran_shah@bitbucket.org/acmriskalive/risk-aliveprodiler-2.git" because that's what the Bitbucket instruction page tells me to do:
bitbucket instructions.png
... except it says to use "origin" instead of "target".
Unfortunately, I get an error: "fatal: Not a git repository (or any of the parent directories): .git".
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Once you clone the repo, it will create a directory in the current directory. You need to cd into that directory before doing the git remote add target
-Rich
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks Rich,
Once I got that, the rest worked like a charm.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.