Answers for "git change ssh key"

0

git change ssh key

git config core.sshCommand "ssh -i ~/.ssh/id_rsa_example -F /dev/null"
git pull
git push

# Other way
edit .git/config file like:

[core]
	sshCommand = ssh -i ~/.ssh/id_rsa_example -F /dev/null
Posted by: Guest on January-13-2021
1

add ssh key to github

> Enter passphrase (empty for no passphrase): [Type a passphrase]
> Enter same passphrase again: [Type passphrase again]
Posted by: Guest on October-14-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language