Uploaded December 2021 | Updated September 2026, 2 weeks ago
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
Git video playlist: youtube.com/playlist?list=PLkU6DiIV0iJSXQRSfRZfgDD6hAcg00KgN
https://itvraag.nl
Used commands:
ls -al ~/.ssh
for key in ~/.ssh/id_*; do ssh-keygen -l -f "${key}"; done | uniq
ssh-keygen -t ed25519 -C "your_email@example.com"
git config --global --unset credential.helper
eval $(ssh-agent)
ssh-add -k ~/.ssh/id_ed25519
bash_profile script for SSH agent:
stackoverflow.com/questions/18880024/start-ssh-agent-on-login
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
Git video playlist: youtube.com/playlist?list=PLkU6DiIV0iJSXQRSfRZfgDD6hAcg00KgN
https://itvraag.nl
Used commands:
ls -al ~/.ssh
for key in ~/.ssh/id_*; do ssh-keygen -l -f "${key}"; done | uniq
ssh-keygen -t ed25519 -C "your_email@example.com"
git config --global --unset credential.helper
eval $(ssh-agent)
ssh-add -k ~/.ssh/id_ed25519
bash_profile script for SSH agent:
stackoverflow.com/questions/18880024/start-ssh-agent-on-login










