From e92d83475ccf51285aff977e7bc0af6fed8b09aa Mon Sep 17 00:00:00 2001 From: jolheiser Date: Mon, 3 Jul 2023 09:19:20 -0500 Subject: [PATCH] feat: ssh config for git Signed-off-by: jolheiser --- apps/ssh/config | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/apps/ssh/config b/apps/ssh/config index aa96b12..31146af 100644 --- a/apps/ssh/config +++ b/apps/ssh/config @@ -2,8 +2,34 @@ Host jolheiser HostName jolheiser.com User jolheiser IdentityFile ~/.ssh/jolheiser + IdentitiesOnly yes Host jojodev HostName jojodev.com User jolheiser IdentityFile ~/.ssh/jojodev + IdentitiesOnly yes + +Host git.jojodev.com + HostName git.jojodev.com + User git + IdentityFile ~/.ssh/github + IdentitiesOnly yes + +Host github.com + HostName github.com + User git + IdentityFile ~/.ssh/github + IdentitiesOnly yes + +Host gitea.com + HostName gitea.com + User git + IdentityFile ~/.ssh/github + IdentitiesOnly yes + +Host codeberg.org + HostName codeberg.org + User git + IdentityFile ~/.ssh/github + IdentitiesOnly yes \ No newline at end of file