Get Set Up · GitHub Install Guide
0%
0 of 6 lessons complete
Everything you need to set up your repository.

GitHub Install Guide

Set up GitHub for your Four Languages system. 6 lessons, no prior experience needed.

What is GitHub?

GitHub is a website that stores files, like Google Drive for projects. Your Four Languages starter system lives on GitHub. You will download it once, and from there it lives on your computer.

You do not need to understand code or programming. You will use a few simple commands in Terminal, and this guide walks you through every single one.

What is a Repository?

A repository (or "repo") is just a project folder on GitHub. It contains all the files for a project, plus a complete history of every change ever made to those files.

Think of it like this:

  • A regular folder on your computer = just files
  • A repository = files + a complete history of every version of those files

The Four Languages starter system is a repository. When you download it, you get all the files. When you set up your own backup (Lesson 5), you get the version history too.

Key Terms (Just Three)

📥 Clone

Download a copy of a repository from GitHub to your computer. You do this once.

📤 Push

Send your changes from your computer up to GitHub. This is how you back up your work.

📥 Pull

Download the latest version from GitHub to your computer. This is how you get updates.

Why We Use GitHub

🏠 1. Your System Lives on YOUR Computer

You download the template once, and it lives on your machine. You work locally. You own your files. Nothing depends on a platform staying online.

🔒 2. You Control What Gets Backed Up

In Lesson 5, you will create your own private repository. You choose exactly which files to push there. Your root file, your skills, your learnings: safe to push. Personal data like CRM contacts, journal entries, or .env files: keep those local only. The template comes with a .gitignore file that helps with this automatically.

🛡️ 3. Your Work Has a Safety Net

When you push to your private repo, your system files exist in two places: your computer and GitHub. If anything happens to your machine, your system structure is safe.

💡 You Don't Need to Become a Developer

GitHub was made for developers, but you are using maybe 5% of what it can do. Clone, push, pull. That is it. And most of the time, you will just ask Claude to do it for you.

Guide Complete!
You finished all 6 lessons. Your repository is ready.