📦

Part of series

Code, Git & GitHub

All Journeys
🔄

The Full Pipeline

7 steps•25-35 min•Includes manual steps
Your Progress0% complete

Steps

📚 LearnStep 1 of 7

The Big Picture

How code flows in modern development

Let's zoom out and see the full picture of how code moves:

``` You + Claude Code ↓ (write code) Your Computer (local files) ↓ (git push) GitHub (cloud storage) ↓ (auto-deploy) Vercel/Netlify (live website)

And it works backwards too:

GitHub ↓ (git clone/pull) Your Computer ```

**Why this matters:** - **Write locally** — fast, works offline - **Push to GitHub** — backup, history, collaboration - **Auto-deploy** — your site updates automatically - **Pull when needed** — get code on a new computer

**The beauty:** Once set up, pushing to GitHub automatically updates your live website. Magic!