create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
#!/bin/bash | |
# Installation | |
# ------------ | |
# Use following command | |
# cp pre-commit.sh .git/hooks/pre-commit | |
# It is done automatically after composer install / update | |
PHPCS_BIN=vendor/bin/phpcs | |
TMP_STAGING=".tmp_staging" | |
# comma-separated list of file patterns being ignored |
#!/usr/bin/env bash | |
set -o errexit -o pipefail -o nounset | |
IFS=$'\n\t' | |
ROOT="$(dirname $0)/root" | |
if [[ -f $ROOT.key || -f $ROOT.crt ]]; then | |
echo "Root certificate already exist" | |
exit 1 | |
fi |
----- Esc ----- | |
Quick change directory: Esc + c | |
Quick change directory history: Esc + c and then Esc + h | |
Quick change directory previous entry: Esc + c and then Esc + p | |
Command line history: Esc + h | |
Command line previous command: Esc + p | |
View change: Esc + t (each time you do this shortcut a new directory view will appear) | |
Print current working directory in command line: Esc + a | |
Switch between background command line and MC: Ctrl + o | |
Search/Go to directory in active panel: Esc + s / Ctrl + s then start typing directory name |
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"