Access Granted

    GitHub,
    in plain English

    The full guide. Copy it, save it, come back whenever git feels confusing.

    Quick start

    1. 1. Read the guide below once, start to finish. It's short.
    2. 2. Learn the three words: repository, commit, push.
    3. 3. Next time you work in your Second Brain, ask Claude to commit when something meaningful changes.
    4. 4. If anything looks broken, ask Claude to explain the last commit in plain English before you worry.
    The Guide

    GitHub, in Plain English

    Save this. It's the whole thing, no filler.

    github-in-plain-english.md
    # GitHub, in Plain English
    
    You don't need to code to use GitHub. You just need the two-minute version of what it is and why your Second Brain lives there.
    
    ## What GitHub actually is
    
    Forget the programmer stereotype. GitHub is a folder online that remembers every version of itself. You put files in it. Every time you save a meaningful change, it keeps a copy of that moment, forever, so you can always go back.
    
    That's it. Not a coding tool. A folder with a memory.
    
    ## Why your Second Brain lives there
    
    Three reasons, no more:
    
    1. It's free and it doesn't disappear. No subscription, no company that can shut down and take your data with it. Your Second Brain is yours, stored under your own account.
    2. It syncs everywhere. Same brain on your laptop, a new machine, a teammate's computer. One source of truth instead of five out-of-date copies in five folders.
    3. It's how Claude Code was built to work. The AI reads and writes your files best when they live in a place designed for exactly that. GitHub is the format the whole system assumes, not an extra step bolted on.
    
    ## Three words, not fifty
    
    GitHub has a huge vocabulary. You need three of those words.
    
    - Repository ("repo"). Your folder. The Second Brain you own.
    - Commit. A save point. "Here's what changed, and why." Every commit is a moment you can return to.
    - Push. Sending your saved changes online, so the backup actually happens.
    
    Branches, merges, pull requests: real things, not your problem yet. Ignore them until something in your workflow specifically needs them.
    
    ## The fear: "What if I break something?"
    
    You won't, and here's why. Every commit is a checkpoint. If a change turns out to be wrong, you don't lose the good version, you just go back to the commit before it. Nothing is deleted. Nothing is final. The whole point of the system is that mistakes are recoverable by design.
    
    The only way to actually lose work is to never commit in the first place. So the habit that protects you is the same habit that makes the system useful: commit often.
    
    ## The loop you'll actually repeat
    
    Not "learn Git." Three moves, on a loop:
    
    1. Open your Second Brain and work. Talk to Claude, edit a file, run a session.
    2. Commit when something meaningful changed. Claude Code can do this for you when you ask.
    3. Push so it's backed up and synced.
    
    That's the entire beginner workflow. Everything else in Git exists for edge cases you'll grow into if you need them, not on day one.
    
    ## If you get stuck
    
    Ask Claude directly: "explain what just changed and why," or "what does this commit do." It can read its own history in plain English. You don't need to decode Git yourself. You have a translator built in.
    
    Iwo
    Deep Dives

    Section by section

    GitHub is a folder online that remembers every version of itself. You put files in it. Every time you save a meaningful change, it keeps a copy of that moment, forever, so you can always go back. Not a coding tool. A folder with a memory. Your Second Brain lives there because it's free, permanent, syncs across every device you use, and it's the format Claude Code was built to read and write natively.

    Where this fits

    This guide covers the ground floor: what GitHub is and the loop you'll repeat. Second Brain is the system built on top of that foundation, already set up so you rarely think about any of this directly.

    See Second Brain