Skip to content

Setting up Git

PiGuy2 edited this page Mar 31, 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.

Configutation

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:  
```Shell 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 clone this repository.
Clone this wiki locally