A short taster session into the fundamental technologies powering the world wide web.
Remember that Git is a tool developers use to track changes to their code and collaborate with others. You'll need to do all of this at the hackathon - so here's a quick refresher.
Before you can use Git with your website you need to initialize it as a Git repository. Fortunately SourceTree makes this really easy.
File > New/Clone
Recall that taking a snapshot of your code is actualy a two stage process, the first being add (selecting the files to snapshot) and the second being commit (saving the state of the files).
Recall that we now have our Git repository setup, but it is only on our local machine. We'd ideally like to host it on the Internet. Enter GitHub.
GitHub let you publicy host your Git repositories for all to see, you can pay to make them private if you want too. We'll use GitHub to host our code and eventually publish it as a website.
We've now got our code online, but this isn't a website yet! We'd love to be able to show people our creations, right? Fortunately we're only one step off being online!
Your website should now be online at: http://username.github.io/repository_name