# Lesson 03: Git Repository Cloning - Quick Checklist **⏱️ 10 minutes** --- ## Create Projects Folder In terminal (**Ctrl+`** or **Cmd+`**): ```bash # Windows mkdir C:\Projects cd C:\Projects # Mac/Linux mkdir ~/Projects cd ~/Projects ``` - [ ] ✅ Projects folder created --- ## Clone Your Repository - [ ] Go to your repo on GitHub → Click **"Code"** → Copy URL - [ ] In terminal: `git clone [paste-url]` - [ ] (If prompted: Install Git → Click "Install") - [ ] ✅ "done" message --- ## Open Project in IDE - [ ] **File** → **Open Folder** - [ ] Select your project folder - [ ] ✅ Project in sidebar --- ## Next Step ✅ Repository cloned! **[→ Lesson 04: WDS Project Initialization](../lesson-04-wds-initialization/01-quick-checklist.md)** --- **Need more detail?** See [full lesson](02-full-lesson.md)