Skip to content

Instantly share code, notes, and snippets.

View florentdrousset's full-sized avatar
🏠
Working from home

Florent Drousset florentdrousset

🏠
Working from home
View GitHub Profile
@florentdrousset
florentdrousset / iterm2.md
Created May 14, 2019 16:35 — forked from squarism/iterm2.md
iterm2 cheatsheet

Tabs and Windows

Function Shortcut
New Tab + T
Close Tab or Window + W (same as many mac apps)
Go to Tab + Number Key (ie: ⌘2 is 2nd tab)
Go to Split Pane by Direction + Option + Arrow Key
Cycle iTerm Windows + backtick (true of all mac apps and works with desktops/mission control)
@florentdrousset
florentdrousset / Setting_upa_new_repo.md
Created February 22, 2019 22:21 — forked from alexpchin/Setting_upa_new_repo.md
Create a new repository on the command line

Setting up a new Git Repo

##Create a new repository on the command line

touch README.md
git init
git add README.md
git commit -m "first commit"

git remote add origin [email protected]:alexpchin/.git