Something strange is happening to me, I have 1 app, in which I have to upload it to 2 different github accounts, however even though I create the ssh-keygen with different names:
ssh-keygen -t rsa -b 2048 -C "clave1" -f /home/user/.ssh/clave1
ssh-keygen -t rsa -b 2048 -C "clave2" -f /home/user/.ssh/clave2
I can only connect to a github account, since the other gives me permission error when trying to upload, although I have verified on several occasions that the key is the same with the account I want connect, until I've re-pasted again, plus I have my .ssh / config
Host host1
HostName github.com
User git
IdentityFile "~/.ssh/clave1"
Host host2
HostName github.com
User git
IdentityFile "~/.ssh/clave2"
What could be happening? I appreciate any suggestions, maybe this is missing something, greetings!