Skip to content

Instantly share code, notes, and snippets.

View niksteff's full-sized avatar
⌨️
Just hacking away ...

Nik niksteff

⌨️
Just hacking away ...
View GitHub Profile

Creating a Happy Git Environment on OS X (or other unix like systems).

(soon for windows, too.)

Step 1: Install Git

Configure things:

git config --global user.name "Your Name"
git config --global user.email "[email protected]"

git config --global alias.co checkout