-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
56 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,13 +22,25 @@ tags: ["create ssh gpg", "export ssh gpg", "import ssh gpg", "backup ssh gpg"] | |
- [ ] https://github.com/octo-org/octo-repo/issues/740 | ||
- [ ] Add delight to the experience when all tasks are complete :tada: | ||
|
||
```ts | ||
console.log('Highlighted') // [!code highlight] | ||
console.log('Highlighted') // [!code highlight] | ||
console.log('Not highlighted') | ||
``` | ||
|
||
```ts | ||
console.log('hewwo') // [!code --] | ||
console.log('hello') // [!code ++] | ||
console.log('goodbye') | ||
``` | ||
|
||
### Create SSH Key | ||
1. Generate SSH Key with **ed25519** algorithm. | ||
```bash | ||
ssh-keygen -t ed25519 -C "[email protected]" | ||
``` | ||
2. See the generated key. | ||
```bash | ||
```bash {1} | ||
cat ~/.ssh/id_ed25519.pub | ||
# ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIIB8J6 "[email protected]" | ||
``` | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters