victordobry
victordobry

Reputation: 3408

Unable to connect to remote Git repository

Trying to push to remote Git repository I receive the following error:

no such identity: /Users/Victor/.ssh/id_rsax: No such file or directory

What is id_rsax? It should be id_rsa, which is in place. How to fix it?

Upvotes: 0

Views: 60

Answers (1)

LEI
LEI

Reputation: 316

This path has to be specified somewhere.

Check ~/.ssh/config, or any file where you might have specified the SSH key, and inadvertently added x at the end of id_rsa.

Also read the GitHub Help about authenticating for more information.

Upvotes: 1

Related Questions