create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
People
:bowtie: |
π :smile: |
π :laughing: |
|---|---|---|
π :blush: |
π :smiley: |
:relaxed: |
π :smirk: |
π :heart_eyes: |
π :kissing_heart: |
π :kissing_closed_eyes: |
π³ :flushed: |
π :relieved: |
π :satisfied: |
π :grin: |
π :wink: |
π :stuck_out_tongue_winking_eye: |
π :stuck_out_tongue_closed_eyes: |
π :grinning: |
π :kissing: |
π :kissing_smiling_eyes: |
π :stuck_out_tongue: |
#Oh My Zsh - Git Cheat Sheet
g β git
gst β git status
gl β git pull
gup β git pull --rebase
| HEADER | EMPHASIS | HORIZONTAL_LINE | LIST | TABLE
| // check version | |
| node -v || node --version | |
| // list locally installed versions of node | |
| nvm ls | |
| // list remove available versions of node | |
| nvm ls-remote | |
| // install specific version of node |
| /** | |
| * Get the caret position in all cases | |
| * | |
| * @returns {object} left, top distance in pixels | |
| */ | |
| getCaretTopPoint () { | |
| const sel = document.getSelection() | |
| const r = sel.getRangeAt(0) | |
| let rect | |
| let r2 |