Home > Software engineering >  Unable to import github repo in bitbucket using import repository
Unable to import github repo in bitbucket using import repository

Time:08-05

I am importing a repo that is in GitHub to bitbucket using the import statement. Looks like an SSH key issue to me. Also, the repo which I am trying to import is a private repo within my organization. Can anyone please guide me on how to resolve this? Thanks in advance. enter image description here enter image description here

CodePudding user response:

If the remote GitHub clone has failed, using an HTTPS URL, then no SSH keys are involved.

Double-check the password used. It is possible it requires not the GitHub user account password, but a token (PAT: Personal Access Token) associated to that account, for the clone to succeed.

  • Related