-
Install XCode Command Line Tools which contains git.
xcode-select --install
-
Open Terminal and check if git is installed.
git --version
-
If there are any issues with installing git via XCode CLT, git can also be installed via homebrew using
brew install git
. -
Make sure you have the PS1 and EDITOR environment variables set. We did this on Day 1: ../commandline/04-unix.md#-example-permanently-setting-an-environment-variable
-
Make sure sublime text is installed properly. ../setup.md
- See windows.md
- Follow Ubuntu instructions
- Install Git
sudo apt-get install git
-
Configure
git
with your name and email address. Be sure to use the same email associated with your Github account.git config --global user.name "YOUR NAME" git config --global user.email "YOUR EMAIL ADDRESS"