BitBucket 오류, (repository access denied. access via a deployment key is read-only.)

Bitbucket을 사용하는 과정에서 인증서를 잘못 등록하여 발생한 문제.

ssh key 설정은 다음과 같습니다.

cat ~/.ssh/config
Host bitbucket.org
    HostName bitbucket.org
    IdentityFile ~/.ssh/id_rsa_oracloud

bitbucket에 push 과정에서 문제가 발생하고 문제를 찾지 못했습니다. Bitbucket에 공개키를 잘못 등록해서 발생한 문제입니다.

git push origin master -v
Pushing to git@bitbucket.org:taewanme/hugo_tutorial_theme_4tw.git
repository access denied. access via a deployment key is read-only.
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists.

ssh 공개키는 다음 다름과 같이 사용자 계정의 환경설정에 ssh 공개키를 등록해야 합니다.

다음과 같이 레파지토리에 ssh 공개키를 등록하여 접근 권한 오류가 발생하는 경우가 있습니다.