From 2978624815e87c6ff862f6993c3a8b27814030d0 Mon Sep 17 00:00:00 2001 From: Andrew Williams Date: Tue, 14 Jul 2020 10:43:33 +0100 Subject: [PATCH] Fix ordering of ssh conf --- ssh/.ssh/config | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/ssh/.ssh/config b/ssh/.ssh/config index 94aa6c5..14e17db 100644 --- a/ssh/.ssh/config +++ b/ssh/.ssh/config @@ -1,14 +1,6 @@ User nikdoof AddKeysToAgent yes -Host * - ForwardAgent no - ForwardX11 no - ForwardX11Trusted no - Protocol 2 - ServerAliveInterval 60 - ServerAliveCountMax 30 - Host github.com User git @@ -21,3 +13,10 @@ Host dimension.sh Host *.dimension.sh ForwardAgent yes +Host * + ForwardAgent no + ForwardX11 no + ForwardX11Trusted no + Protocol 2 + ServerAliveInterval 60 + ServerAliveCountMax 30