You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/installing-on-top.md
+9-1Lines changed: 9 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -37,11 +37,19 @@ follow a reasonably common workflow when it comes to building software in a new
37
37
[GitHub has good documentation on how to do this](https://docs.github.com/en/authentication/connecting-to-github-with-ssh/adding-a-new-ssh-key-to-your-github-account).
38
38
39
39
If you are using a cluster for this tutorial, you can create a new ssh key on the cluster and
40
-
register the public part of the new key on GitHub.
40
+
register the public part of the new key on GitHub. You can do this by clicking the `New ssh key` button
41
+
at the webpage <https://github.com/settings/keys>.
41
42
42
43
**Always remember, an SSH key is like a digital passport,
43
44
make sure to protect it by a passphrase as the location where it is stored may not be secure**.
44
45
46
+
You can verify that ssh authentication with GitHub is working by running the command
47
+
```
48
+
ssh -T git@github.com
49
+
```
50
+
(this assumes that you are using a default name for your key, if you are not then you need to add
51
+
the option `-i <path to privte part of your registered key>` to the command).
52
+
45
53
We have prepared a template for a demonstrator project that can be used throughout this tutorial. The first step is to
46
54
make your instance of the project from the template, for this you need to click on the link
0 commit comments