From 2d347657dc4540a53d05cdb2643f72caf39638eb Mon Sep 17 00:00:00 2001 From: Ammar Bandukwala Date: Thu, 1 Sep 2022 21:29:57 -0500 Subject: [PATCH] site: correct documentation on gitsshkey (#3690) * site: correct documentation on gitsshkey Co-authored-by: Presley Pizzo <1290996+presleyp@users.noreply.github.com> --- .../pages/UserSettingsPage/SSHKeysPage/SSHKeysPage.tsx | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/site/src/pages/UserSettingsPage/SSHKeysPage/SSHKeysPage.tsx b/site/src/pages/UserSettingsPage/SSHKeysPage/SSHKeysPage.tsx index 8257f3eb26..1f6fbff7cf 100644 --- a/site/src/pages/UserSettingsPage/SSHKeysPage/SSHKeysPage.tsx +++ b/site/src/pages/UserSettingsPage/SSHKeysPage/SSHKeysPage.tsx @@ -7,8 +7,14 @@ import { SSHKeysPageView } from "./SSHKeysPageView" export const Language = { title: "SSH keys", - description: - "Coder automatically inserts a private key into every workspace; you can add the corresponding public key to any services (such as Git) that you need access to from your workspace.", + description: ( +

+ The following public key is used to authenticate Git in workspaces. You may add it to Git + services (such as GitHub) that you need to access from your workspace.
+
+ Coder configures authentication via $GIT_SSH_COMMAND. +

+ ), regenerateDialogTitle: "Regenerate SSH key?", regenerateDialogMessage: "You will need to replace the public SSH key on services you use it with, and you'll need to rebuild existing workspaces.",