DEV Community

Cover image for How to manage several SSH Config files on Mac and Linux (quick-note)
Diego Carrasco Gubernatis
Diego Carrasco Gubernatis

Posted on • Originally published at diegocarrasco.com

How to manage several SSH Config files on Mac and Linux (quick-note)

Use the Include directive to merge an external config file in the main (default) ssh config file.

  1. Create another config file as usual.
  2. Add the following line at the beginning of your ~/.ssh/config file

     Include path-to-new-config-file
    

    for example, if we have a config file in ~/Documents/.ssh/config add Include ~/Documents/.ssh/config in your main ~/.ssh/config file

What is this good for?

As I mentioned in How to use multiple SSH keys on a Mac with Github or Gitlab my objective is to s separate personal projects from work projects. In this case, I can use an ssh config file for work and another file for my projects, and then include my projects into the main config file.
This also allows me to track my changes with a private git repository without worrying about confidential information from work.

References and further reading

Top comments (0)