Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

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
Comment

how to change ssh key for git

git config --local core.sshCommand "ssh -i ~/.ssh/id_rsa_example -F /dev/null"
Comment

PREVIOUS NEXT
Code Example
Shell :: phpcs diferent xml 
Shell :: cuda install in ubuntu 
Shell :: git add origin command 
Shell :: store credential cache git 
Shell :: install formik 
Shell :: how to install pymongo 
Shell :: valet phpmyadmin 404 
Shell :: un add file in git 
Shell :: run file linux 
Shell :: how to open .bin file in linux 
Shell :: how to get github url 
Shell :: Steps to deploy your flutter project with surge 
Shell :: how to read from keyboard in bash and store in a variable 
Shell :: how to enable camera in ubuntu 
Shell :: adobe reader linux 
Shell :: ssh transfer file 
Shell :: make file powershell 
Shell :: merge child branch to parent git 
Shell :: install glfw3 
Shell :: how to start cron job 
Shell :: iis restart cfrom command promt windows 
Shell :: linux install requirements.txt 
Shell :: how to delete command from terminal history 
Shell :: how to setup ubuntu for windows in visual studio code 
Shell :: push existing repo 
Shell :: hide desktop icons macos 
Shell :: Target Packages (main/binary-amd64/Packages) is configured multiple times in /etc/apt/sources.list.d/pgdg.list:1 and /etc/apt/sources.list.d/pgdg.list:2 
Shell :: git bring your changes to a new branch 
Shell :: raspberry pi install vscode via command line 
Shell :: git got to previous commit 
ADD CONTENT
Topic
Content
Source link
Name
6+9 =