Generate SSH Key
ssh-keygen -t ed25519 -C "your_email@example.com"
# or
ssh-keygen -t rsa -b 4096 -C "your_email@example.com"Copy Generated Key
cat ~/.ssh/id_ed25519.pubSSH instead of HTTPS
git remote set-url origin git@github.com:p0unter/iam_linux.gitCheck Github Connection
ssh -T git@github.comPermanent
git config --global credential.helper store