How to solve id_ed25519 file

carnato

Vishal Yadav

Posted on August 19, 2022

How to solve id_ed25519 file

When I created the SSH key for the git then I face the error
when i running the command

ssh-add ~/.ssh/id_ed25519
Enter fullscreen mode Exit fullscreen mode

of id_ed25519 no such file found.

Solution

1.

change the file name id_rsa.
ssh-add ~/.ssh/id_rsa

2.

For copy the key we follow the given command
clip < ~/.ssh/id_rsa.pub

3.

At last one more command.
Just add Github fingerprint to known hosts this way:

ssh-keyscan -t rsa github.com >> ~/.ssh/known_hosts 
Enter fullscreen mode Exit fullscreen mode

then push the project
HAPPY CODING☺☺☺

💖 💪 🙅 🚩
carnato
Vishal Yadav

Posted on August 19, 2022

Join Our Newsletter. No Spam, Only the good stuff.

Sign up to receive the latest update from our blog.

Related

How to solve id_ed25519 file
git How to solve id_ed25519 file

August 19, 2022