I was trying to push my first commit on an empty rep to bitbucket. However this:
-git push -u origin --all #to push changes for the first time
resulted to:
Permission denied (publickey). fatal: Could not read from remote repository. Please make sure you have the correct access rights and the repository exists.
So, I tried to sudo it. The result was this:
Warning: Permanently added the RSA host key for IP address '207.223.240.182' to the list of known hosts. Permission denied (publickey). fatal: Could not read from remote repository. Please make sure you have the correct access rights and the repository exists.
So, why did this happen and should I remove the permanently added RSA host key for that uknown ip address? How?
Also, I don't want to set up a SSH yet, as I prefer work with HTTPS as a beginner.
Hi there, I'm not sure if you're using Windows or Linux, but we have a guide that expains how to get your SSH key setup. We also have a troubleshooting guide. As this error can be the result of a variety of possible issues, I'd recommend going through the guides step-by-step to be sure that your key is
ssh-add -l
Host bitbucket.org IdentityFile ~/.ssh/my_key_filename
ssh -Tvv git@bitbucket.org
I have set up both public and private keys but I don't know whats wrong i still unable to clone my project on AWS using ssh. any suggestions?
with sudo I get below error
git@bitbucket.org: Permission denied (publickey).
fatal: Could not read from remote repository.
without sudo, appears that the cloning part is working but I get below warning
warning: unable to access '/home/ubuntu/.config/git/attributes': Permission denied
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
thanks it works
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks a lot , It solved . sof you may refer this https://www.youtube.com/watch?v=p4Jhf729jgg
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
In my case i need to provide correct permission on key file , using following command in directory where "mykeyfile" is store sudo chmod 400 mykeyfile
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You are a life saver @Jay Soni, I regenerated ssh key many times thinking that they were not okay but the problem was on permissions. Now I can clone, push and pull. Thanks buddy.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
what do you mean by the key file, please?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
As a side note, avoid sudo. It can mess up access to apps and install on your computer.
I'm not sure sudo has any effect on git commands anyway, does it?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Links are dead
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.