From 70e01d2662c970dc4813b795baa50e0daf4f6d38 Mon Sep 17 00:00:00 2001 From: afranco Date: Wed, 28 Dec 2022 19:23:54 +0000 Subject: [PATCH] chore: Added ssh connection multiplexing to git server (Removes need to keep pressing ssh key or typing password) --- .ssh/config | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 .ssh/config diff --git a/.ssh/config b/.ssh/config new file mode 100644 index 0000000..44d7da2 --- /dev/null +++ b/.ssh/config @@ -0,0 +1,7 @@ +IdentityFile ~/.ssh/id_ecdsa_sk +IdentityFile ~/.ssh/id_ecdsa_sk_backup + +Host gitea.olympuslab.net github.com + ControlMaster auto + ControlPath ~/.ssh/session.%r@%h:%p + ControlPersist 1d