Crear llave y agregarla a github
Crear llave ssh:
ssh-keygen -t ed25519 -C "tu_correo@ejemplo.com"
agregar llave al ssh-agent
:
ssh-add ~/.ssh/elvinguti_key
Actualizar ssh config file
Edita ~/.ssh/config
:
Host github.com
HostName github.com
IdentityFile ~/.ssh/my_work_key
IdentitiesOnly yes
Host elvinguti.github.com
HostName github.com
User elvinguti
IdentityFile ~/.ssh/elvinguti_key
IdentitiesOnly yes
seguramente necesitaras reiniciar el ssh-agent
:
eval $(ssh-agent -s)
Ahora deberias ser capaz de clonar el repositorio o actualizar la url remota de git:
# Formato de URL: git@host_del_alias:usuario/nombre_del_repo.git
# Repositorio existente
git remote set-url origin git@elvinguti.github.com:elvinguti/elvingutidev.git`
# Clonar repositorio
git clone origin git@elvinguti.github.com:elvinguti/elvingutidev.git