Issue
I created a public key in Git using ssh-keygen
which was successfully created as .ssh/id_rsa.pub
.
src="https://i.stack.imgur.com/zWBHv.png" alt="enter image description here" />
I then uploaded it to GitHub in my SSH Keys, and "Authorized" its SSO feature. Everything is uploaded now.
When cloning a repository in Eclipse, I get the following message
Solution
According to Github security blog RSA
keys with SHA-1 are no longer accepted.
Use the following command to create new SSH key with ECDSA
encryption and add it to Github.
ssh-keygen -t ecdsa -b 521 -C "[email protected]"
Original answer with details can be found here
Answered By - Haseeb Iqbal
Answer Checked By - Cary Denson (JavaFixing Admin)