notes: add ssh-keygen command

This commit is contained in:
Dmitriy Pleshevskiy 2023-03-17 12:17:21 +03:00
parent 698a01b8ac
commit 5a6fed27cf
Signed by: pleshevskiy
GPG key ID: 79C4487B44403985

View file

@ -9,3 +9,9 @@ If you want to get key for the current machine you can use the following code
```sh
ssh-keyscan localhost
```
# Generate new ssh key
```
ssh-keygen -t ed25519 -C "bob@example.com"
```