Inserting a single row:
INSERT INTO <table> VALUES (<value 1>, <value 2>, ...);
| Command | Description | Example |
|---|---|---|
git help |
Get help on a command | $ git help push |
git config |
Configure Git | $ git config --global … |
source <file> |
Activate Bash changes | $ source ~/.bash_profile |
mkdir -p |
Make intermediate directories as necessary | $ mkdir -p repos/website |
git status |
Show the status of the repository | $ git status |
touch <name> |
Create empty file | $ touch foo |
git add -A |
Add all files or directories to staging area | $ git add -A |
| Command | Description | Example |
|---|---|---|
echo <string> |
Print string to screen | $ echo hello |
man <command> |
Display manual page for command | $ man echo |
⌃C |
Get out of trouble | $ tail^C |
⌃A |
Move to beginning of line | |
⌃E |
Move to end of line | |
⌃U |
Delete to beginning of line | |
Option-click |
Move cursor to location clicked |