create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "your_email@youremail.com"
| // The code is based on https://gist.github.com/kottenator/9d936eb3e4e3c3e02598#gistcomment-3238804 | |
| type PageItem = number | "..."; | |
| export const getRange = (start: number, end: number): PageItem[] => { | |
| if (end < start) throw Error(`End number must be higher then start number: start ${start}, end ${start}`); | |
| const rangeLength = end - start + 1; | |
| return Array(rangeLength) | |
| .fill(0) |
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "your_email@youremail.com"
FWIW: I didn't produce the content presented here (the outline from Edmond Lau's book). I've just copy-pasted it from somewhere over the Internet, but I cannot remember what exactly the original source is. I was also not able to find the author's name, so I cannot give him/her the proper credits.