I've created a new ssh key using:
ssh-keygen -t rsa -b 4096 -C <my-email>
I've added the new key to github in my GitHub account settings. I've added the following to my "config" in my .ssh
folder:
Host *
AddKeysToAgent yes
UseKeychain yes
IdentityFile ~/.ssh/id_rsa
When I attempted to verify my GitHub account by using:
ssh -T -ai ~/.ssh/id_rsa git@github.com
I get back someone else as an acknowledgement.
Hi xxxx/yyyy! You've successfully authenticated, but GitHub does not provide shell access
What could be causing this?
I've deleted the old id_rsa keys and generated new ones.
I expected it to show:
Hi my name/my_repo! You've successfully authenticated, but GitHub does not provide shell access