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

I could only find information on setting up the configuration file, but I could not find how to create the configuration file manually. I created the rsa key, which is located in the .ssh folder, but I could not find the created configuration file there.

+6
source share
1 answer

You can simply create it yourself:

touch ~/.ssh/config 

or go to the .ssh and only do:

 touch config 

And then fill it with data.

+7
source

Source: https://habr.com/ru/post/974301/


All Articles