adding new ssh key with console code example
Example 1: checking for existing ssh keys
$ ls -al ~/.ssh
# Lists the files in your .ssh directory, if they exist
Example 2: ssh add new key
$ eval "$(ssh-agent -s)"
> Agent pid 59566
$ ls -al ~/.ssh
# Lists the files in your .ssh directory, if they exist
$ eval "$(ssh-agent -s)"
> Agent pid 59566