Fix ssh-keygen formatting

This commit is contained in:
2023-01-04 10:53:37 +00:00
parent fd7d0af25a
commit 4633c416a0
+3 -1
View File
@@ -29,7 +29,9 @@ As an example place to keep a remote repo, I've used GitHub. You can of course u
Add SSH access to GitHub. This allows you to clone, push and pull between local code and GitHub without having to enter a username and password every time. Add SSH access to GitHub. This allows you to clone, push and pull between local code and GitHub without having to enter a username and password every time.
* Create an SSH key * Create an SSH key
ssh-keygen -t ed25519 ```
ssh-keygen -t ed25519
```
* Accept the default path * Accept the default path
* Add a passphrase to be secure or leave it blank to have an easy life * Add a passphrase to be secure or leave it blank to have an easy life
* TODO set up ssh-agent service and run ssh-add if you have a passphrase * TODO set up ssh-agent service and run ssh-add if you have a passphrase