我想创建项目并将其推送到bitbukcet repo。
我按照说明操作:
cd /path/to/my/repo
git remote add origin https://nazar_lelyak@bitbucket.org/nazar_lelyak/blog.git
git push -u origin --all # pushes up the repo and its refs for the first time
git push -u origin --tags # pushes up any tags
但我接到了下一条消息:
nazar@lelyak-desktop:~/Documents/rails/blog⟫ git push -u origin --all
remote: abort: this user account (nazar_lelyak) does not have a password configured - to use your account over HTTPS, it is necessary to have a password set.
fatal: unable to access 'https://nazar_lelyak@bitbucket.org/nazar_lelyak/blog.git/': The requested URL returned error: 412
我用过github。它有一些ssh
密钥生成选项。
在Bitbucket上存在类似内容吗?
SOLUTION:
能够使用为Github生成的相同ssh
密钥 - Generating SSH Keys。现在一切正常。
答案 0 :(得分:2)
它有一些ssh密钥生成选项。
也许是这样,但你没有使用ssh url作为你的回购
git clone git@bitbucket.org:nazar_lelyak/blog.git
如果您使用https网址,则您的ssh公钥/私钥将被完全忽略。