Manage SSH Keys
23 Dec 2016Generate SSH Key
$ ssh-keygen -t rsa -C "[email protected]"
Add Key
$ ssh-add ~/.ssh/id_rsa
Check Saved Keys
ssh-add -l
Delete All Keys
ssh-add -D
Start ssh agent
If you get the error : “Could not open a connection to your authentication agent.”
eval `ssh-agent -s`