Show Menu
Cheatography

Mac Developer Keyboard Shortcuts (DRAFT) by

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 Substi­tutions

(c)
(o)
(ctl)
^
(s)

Git Aliases

co
checkout
ci
commit
ls
Log Short
ll
Log List (List files touched)
lt
Log Graph
 

Aliases

gr
git reset --soft HEAD~1
gca
git commit ammend
build
build quietly and quickly

iMail

⌃+⌘+A
Archive
 

Intelij Commands

⌘ + I
Inspec­tions
⌘ + ⇧ + B
Find Bugs
⌘ + ⇧ + R
Refactor context menu
⇧ + F10
Run
⌘ + F4
Close tab

Mini-s­cripts

for p in `jps -q`; do jstack ${p} > `date +"%Y­%m%­d%H­%M"`­-${­p}.s­tack; done;