Comment migrer ses dépôts Bitbucket vers Github : Le tuto complet ici https://migration.boutique/migration-de-bitbucket-a-github-le-tuto/
$ ssh-keygen -t rsa -b 4096 -C "ton@email.com" |
$ eval "$(ssh-agent -s)" |
$ ssh-add -K ~/.ssh/id_rsa_nom2clef |
$ pbcopy < ~/.ssh/id_rsa_nom2clef.pub |
$ git clone --mirror https://bitbucket.org/LOGIN_BITBUCKET/mon-depot.git |
$ git remote set-url --push origin git@github.com:LOGIN_GITHUB/mon-depot.git |
$ git push --mirror |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment