Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in

Github Permission denied (publickey)

ayuhime August 29, 2018

Hi, I downloaded SourceTree 2.7.6 today, and encountered below error, so I am denied access to all remote git operations with sourcetree.

git -c diff.mnemonicprefix=false -c core.quotepath=false -c credential.helper=sourcetree fetch origin

git@github.com: Permission denied (publickey).

fatal: Could not read from remote repository.

 Please make sure you have the correct access rights

and the repository exists.

 FYI, my github account is added in SourceTree with Oauth, my ssh keys are well setted in local directory and in github account,  and I can do all remote git operation in terminal using commands.

Please help me with this issue, Thank you!

 

 

EDIT: 

problem solved after adding the key to ssh agent using below command

$ ssh-add -K ~/.ssh/id_rsa

BUT!!!!!!!!!!

 after some experiment I think the private key must be named  id_rsa for SourceTree to work, which is an inconvenience and should be solved by sourcetree developers!!!!!!!

2 answers

0 votes
Grant Viklund January 11, 2019

What you need to do is set it in the config file in your .ssh folder to use the right key when talking to the right domain.  'config' is just a plain text file that the SSH Agent uses to know which keys to use where.

In the case of GitHub you should have something that looks like this:

Host GitHub
    HostName github.com
    IdentityFile /<path>/<to>/.ssh/<YOUR KEY TO USE>
    UseKeychain yes
    AddKeysToAgent yes

You can then set different keys to use with different domains and servers.

The other thing that is critical is to make sure you add the key you create to the Agent's list of keys like you did in your edit.

- Grant

Grant Viklund January 11, 2019

As a followup to the answer above, anytime I go to a repo on GitHub.com (HostName) it will use the key I provide a path to (IdentityFile) to make the SSH connection.

0 votes
bgannin
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
August 31, 2018

Sourcetree will respect whatever keys are loaded in your user environment and the configuration file contents, it isn't doing anything special beyond that. The SSH key management we introduced will generate and configure SSH keys for each service + account and use that if configured, otherwise it will default to id_rsa. Unfortunately macOS has a habit of forgetting loaded SSH keys which is a quirk introduced in 10.12.

Brian Ganninger
Senior Mac Developer, Sourcetree

ayuhime September 10, 2018

Thanks for the reply. Unfortunately, I couldn’t find where to configure the ssh keys. There are no ssh key management options in the preferences&settings.

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events