У меня есть доступ к репо, я клонирую его по https, затем я внес свои изменения и фиксирую эти изменения и создаю new_branch
и пытаюсь нажать, я получил это:
git push origin new_branch
remote: Forbidden
fatal: unable to access 'https://username@bitbucket.org/main-account/repo.git/': The requested URL returned error: 403
Я уже настроил свой ключ SSH, git global config и уже вошел в систему
ssh -T username@bitbucket.org
logged in as username
You can use git or hg to connect to Bitbucket. Shell access is disabled
также я пытался изменить URL
git remote set-url origin git@bitbucket.org:main-account/repo.git
и когда я нажимаю, я получаю это
git push origin new_branch
Forbidden
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
и наконец мой ~/.ssh/config
Host *
UseKeychain yes
Host bitbucket.org
HostName bitbucket.org
PreferredAuthentications publickey
IdentityFile ~/.ssh/id_rsa
Любая помощь?
Заранее спасибо