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: • Git (version control)
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 "[email protected]"
git config --global --unset credential.helper
eval $(ssh-agent)
ssh-add -k ~/.ssh/id_ed25519
bash_profile script for SSH agent:
https://stackoverflow.com/questions/1...