Tengo un Repositorio de gitlab y quiero que lo actualice en la count de Bitbucket.
Proporcióneme los pasos a seguir para que me sea útil migrarlo en Bitbucket desde Gitlab.
Sigue estos pasos:
git clone <gitlabRepoUrl>
cd <repoName>
git remote add bitbucket <bitbucketRepoUrl>
git push bitbucket master
1) Crear el repository en Bitbucket usando la interfaz de usuario
2) Clona el repository Gitlab usando la opción "–bare"
git clone --bare GITLAB-URL
3) Agregue el control remoto Bitbucket
cd REPO-NAME git remote add bitbucket BITBUCKET-URL
4) Empujar todas las confirmaciones, twigs y tags a Bitbucket
git push --all bitbucket git push --tags bitbucket
5) Eliminar el repository de temp
cd .. rm -rf REPO-NAME