Answers for "switch git user in terminal ssh key"

0

change git account terminal

git config --list
git config --global user.name "Full Name"
git config --global user.email "[email protected]"
Posted by: Guest on April-22-2021
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

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language