This is a draft cheat sheet. It is a work in progress and is not finished yet.
iTerm2
⌘+I |
Edit Session Title |
⇧ + ⌘ + (R/L Arrow) |
Move Tab right/left |
Text Substitutions
(c) |
⌘ |
(o) |
⌥ |
(ctl) |
^ |
(s) |
⇧ |
Git Aliases
co |
checkout |
ci |
commit |
ls |
Log Short |
ll |
Log List (List files touched) |
lt |
Log Graph |
|
|
Aliases
|
|
|
git commit ammend |
|
build quietly and quickly |
|
|
Intelij Commands
⌘ + I |
Inspections |
⌘ + ⇧ + B |
Find Bugs |
⌘ + ⇧ + R |
Refactor context menu |
⇧ + F10 |
Run |
⌘ + F4 |
Close tab |
Mini-scripts
for p in `jps -q`; do jstack ${p} > `date +"%Y%m%d%H%M"`-${p}.stack; done;
|
|