Git推新项目许可被拒绝

时间:2017-03-28 13:15:33

标签: git permissions repository push bitbucket

所以我尝试在bitbucket创建一个新项目并导入我当前的东西。

第1步:切换到存储库的目录

cd /path/to/your/repo

步骤2:将现有存储库连接到Bitbucket

git remote add origin ssh://git@bitbucket.org/KevinSpence/app.git
git push -u origin master

git push -u origin master

我收到了这个错误:

$ git push -u origin master
Permission denied (publickey).
fatal: Could not read from remote repository.

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

我做错了什么(这不是我在bitbucket上的第一个项目)

1 个答案:

答案 0 :(得分:1)

听起来您没有正确设置ssh密钥。 按照此步骤设置ssh密钥:https://confluence.atlassian.com/bitbucket/set-up-ssh-for-git-728138079.html

正如其他人已经评论过的,此页面可以帮助您进一步排查问题:https://confluence.atlassian.com/bbkb/permission-denied-publickey-302811860.html

如果仍然无效,您可以选择使用https而不是ssh将遥控器添加到git。 Bitbucket应该有一个下拉列表,可以在https和ssh之间选择