Git #9 - SSH key authentication on GitHub

preview_player
Показать описание
In this video we'll configure an SSH key on our GitHub account in order to manage our remote repositories securely through SSH.
#git #authentication

Used commands:
ls -al ~/.ssh
for key in ~/.ssh/id_*; do ssh-keygen -l -f "${key}"; done | uniq
eval $(ssh-agent)
ssh-add -k ~/.ssh/id_ed25519

bash_profile script for SSH agent:
Рекомендации по теме
Комментарии
Автор

Really appreciate this tutorial, great walkthrough with explanations!

sqturner