-
Notifications
You must be signed in to change notification settings - Fork 0
Setting up Git
PiGuy2 edited this page Apr 1, 2017
·
20 revisions
Go to https://git-scm.com/downloads and download git for your operating system.
Go to https://desktop.github.com to download GitHub desktop, which is what we will use.
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 read about how to fork this repository.