SSH keys / Add new code example
Example 1: ssh add new key
$ eval "$(ssh-agent -s)"
> Agent pid 59566
Example 2: github private key
$ ssh-keygen -t rsa -b 4096 -C "[email protected]"
$ eval "$(ssh-agent -s)"
> Agent pid 59566
$ ssh-keygen -t rsa -b 4096 -C "[email protected]"