Question

I want to create a project and push it to bitbucket repo.

I followed to instructions:

cd /path/to/my/repo
git remote add origin https://nazar@bitbucket.org/nazar/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

But I caught the next message:

nazar@desktop:~/Documents/rails/blog⟫ git push -u origin --all
remote: abort: this user account (nazar) 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@bitbucket.org/nazar/blog.git/': The requested URL returned error: 412

I used Github. And it had some ssh key generation option.

Does exist something similar at Bitbucket?

SOLUTION:

Able to use the same ssh key, generated for Github - Generating SSH Keys. All works fine now.

Was it helpful?

Solution

And it had some ssh key generation option.

Maybe so, but you didn't use an ssh URL for your repo

git clone git@bitbucket.org:nazar/blog.git

If you use an https URL, your ssh public/private key would be ignored entirely.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top