Skip to content

Setting up Git

PiGuy2 edited this page Apr 1, 2017 · 20 revisions

Downloading

Go to https://git-scm.com/downloads and download git for your operating system.

Github

Go to https://desktop.github.com to download GitHub desktop, which is what we will use.

Configuration

Go to the Git Bash (on windows) or Terminal (on a mac), and enter your name:

git config --global user.name "YOUR NAME"

Then, enter your email:

git config --global user.email "YOUR EMAIL"
  • Replace YOUR NAME and YOUR EMAIL with you name and email respectively, but leave the quotes around them.

Next

Next read about how to fork this repository.

Clone this wiki locally