Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Command to create ssh config file using git bash(windows)?

I could only find details about configuring the config file, but i could no where find how to create a config file manually. I have generated rsa key, which is under .ssh folder but i couldn't find the config file being created there.

like image 583
ikiw Avatar asked Aug 25 '14 10:08

ikiw


People also ask

Where is the SSH config file in Windows?

A user's configuration file at %userprofile%\. ssh\config. The system-wide configuration file at %programdata%\ssh\ssh_config.


1 Answers

You can simply create it by yourself:

touch ~/.ssh/config

or go to .ssh directory and do only:

touch config

And then fill it with data.

like image 99
prajmus Avatar answered Oct 07 '22 00:10

prajmus