What is easiest way to move entire repository to Bitbucket

bvrolyk November 20, 2015

We are currently using TFS for Git and I am tasked with moving that over to Bitbucket this weekend.

The current remote repository contains many branches. What is the easiest way to migrate the entire repository? My current (lengthy and tedious) plan of attack is:

  1. Checkout every branch individually.
  2. Pull every branch individually.
  3. git remote add origin git@bitbucket.org:....
  4. git push -u origin --all
  5. git push -u origin --tags

My big concern is with steps 1 & 2. With so many branches, and depending on my internet connection, just those steps could take me nearly all weekend. And even if it didn't, the tedium of repeating nearly the same command for every. single. branch. may well drive me insane.

 

 

 

1 answer

1 accepted

1 vote
Answer accepted
bvrolyk November 21, 2015

Atlassian Support was very helpful and provided me with this link:

https://designhammer.com/blog/easily-migrate-git-repositories-bitbucket

 

Specifically, the commands I was looking for were:

git clone --bare

and

git push --mirror

But the link contains much more useful information for anyone attempting this sort of migration.

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events