generate - github ssh ubuntu
Github SSH Config (1)
Es IdentityFile con ''t'', no IdentifyFile.
Intento crear un archivo .ssh / config para varias cuentas de SSH (específicamente para github.com). He intentado con varios tutoriales y guías paso a paso de github, pero parece que nada funciona.
id_rsa_test
un id_rsa_test
y id_rsa_test.pub
. id_rsa_test.pub
en github.
Luego creé un archivo ~/.ssh/config
con lo siguiente:
# github account
Host github.com-test github.com
Hostname github.com
User git
IdentifyFile ~/.ssh/id_rsa_test
y
# github account
Host github.com-test github.com
Hostname github.com
User git
IdentifyFile ~/.ssh/id_rsa_test.pub
Luego pruebo varios comandos. es decir:
git clone git@github-test:username/my_project.git
git push
... cada vez que aparece el siguiente error:
/home/username/.ssh/config: line 5: Bad configuration option: IdentifyFile
/home/username/.ssh/config: terminating, 1 bad configuration options
fatal: The remote end hung up unexpectedly
¿Alguna sugerencia?