how to set ssh key in git code example
Example 1: genrate shh key github
$ ssh-keygen -t rsa -b 4096 -C "[email protected]"
Example 2: git specify ssh key for repo
Host github.com
HostName github.com
IdentityFile ~/.ssh/id_rsa_github
Example 3: git change ssh key
git config core.sshCommand "ssh -i ~/.ssh/id_rsa_example -F /dev/null"
git pull
git push
edit .git/config file like:
[core]
sshCommand = ssh -i ~/.ssh/id_rsa_example -F /dev/null
Example 4: what is ssh key in github
$ cd ~/.ssh
$ ls
Example 5: add ssh key to github
> Enter passphrase (empty for no passphrase): [Type a passphrase]
> Enter same passphrase again: [Type passphrase again]