Skip to content
David Kirwan edited this page Apr 17, 2014 · 2 revisions

First things first install Git.

If you only learn one thing in the next few weeks, I hope its git. Its a source control system which allows multiple developers to work on the same code, while minimising the issues surrounding this collaboration. Check the resources section, I've added a number of links such as cheat sheets for git commands.

Getting the code

Sync with the Master Repo

Every week, we will make changes to the master repository, and I'll upload them to the github repo. When you come in each week, we'll need to sync the changes down to your local copy, this is pretty straight forward simply:

open your terminal/git-bash window
cd git
cd libretalk
git pull coderdojo master

To sync the new changes with your fork on github, do the following:

git push origin master