Como mover um repositório Github existente para o Bitbucket

  1. Faça login no Bitbucket e crie o repositório
  2. Certifique-se de ter configurado todo o rastreamento local para os branches remotos que você gostaria de mover para o bitbucket
  3. Mude todos os seus controles remotos com o comando set-url remoto :

=========

git remote set-url origin    git@bitbucket.org:your_username/your_bitbucket_repo.git

Então:

git push -u origin --all # pushes up the repo and its refs for the first time
git push
-u origin --tags # pushes up any tags