Home

dotnix @main - refs - log -
-
https://git.jolheiser.com/dotnix.git
My nix dotfiles
tree log patch
feat: ssh config for git Signed-off-by: jolheiser <john.olheiser@gmail.com>
Signature
-----BEGIN PGP SIGNATURE----- iQIzBAABCgAdFiEEgqEQpE3xoo1QwJO/uFOtpdp7v3oFAmSi2OgACgkQuFOtpdp7 v3ozZBAAudCGVvdx07jbFRHDD9e1Dvbe1eIEhW363VP6IUS+TONH1RXQMEcv19qt 5U79EQ0YHr22zcyFhKqFtU2/Wl+9CL07+5AWmNcnK17Dc+1Awg5uWyS5BpkN4CXr JPaPiwYlmYub1qZ8IYE9A7rhK6lU7/eN+0hMbBC1G50GSmyWyi7N4SArIccYuMwj LXCWW6yV3OctVnh+6yQNYUxuUIbAMxh626GJjRQtSFXlhK1I/oYAS6bkE2wNeg43 FTsY1bEHhatxSyZgAqeQow5CLfb0orHtLwTBGmVDjuT74ozkNoxiIZZzvRH0Wblf xyrY9okEVDxSMi1p3P17pqooU0iQgUSWt7DLcl/el7d+NQVKMfaqmnrHM9+9KzG6 BW2HpIjV9uQHLwap+wBi1rDbvAT1BkdAs5TXQM1wluqtYpP6LneKRilyOotCcMqW 7176QnRMjKJB3lW+WXMIEiLgEIRjjZyCgnPkc4pbF3tT0Q4VfTV/5Jh2vYivRCk9 yTlaoXnmhNzzut5oNvPis602knVF2XWTyjnw3RqHXS6MDoRcaYrFkym8r42HSks5 +XSx1q1n90S6QOlcKljPBq++QLyTXqtDbTM0n3fQAURuSKc+YCuBniZkkQd1CAiB v0v/ePw+1iMPxVCMj/yRUrq+LrlUr7YbTDZTNYsvHZmlPDanQrY= =sczG -----END PGP SIGNATURE-----
jolheiser <john.olheiser@gmail.com>
1 year ago
1 changed files, 26 additions(+), 0 deletions(-)
M apps/ssh/config -> apps/ssh/config
diff --git a/apps/ssh/config b/apps/ssh/config
index aa96b12bdbc48849e2e5dd9c33df85575e849c83..31146af30da7d56b8c48d6b40b4ef261e9acfbdf 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