🗒 Cheat Sheet← Lesson
BitWithBite
Git & GitHub Worksheet

🔘 Installing & Configuring Git

Chapter: Git & GitHub · Level ★☆☆ · Time: 30 min
SCORE___ / 20
NameClassDate
After this worksheet you can
Install GitSet user.name and user.emailCheck configUse git --version
📚 Quick Recap

🎯 What you'll learn: How to install Git on Windows, Mac, and Linux; how to verify the installation; how to configure your identity; how to set up SSH keys for GitHub; and the essential global settings every developer should configure.

🧠 Section A · Concept Check ● BEGINNER 4 × 1 = 4

1Check your Git version:
2Set your name with:
3Config with --global applies to:
4Commits are labelled with your:

🧮 Section B · Problem Solving ● INTERMEDIATE 2 + 3×3 = 11

5git config --global user. sets your email.
6View settings with git config --.
7Write both identity config commands.
8Why must identity be set before committing?
9How to check what email Git will use?

🚀 Section C · Challenge ● CHALLENGE 5

10Where does global config live?
💭 Reflection — the most useful thing I learned:
A ___/4   B ___/11   C ___/5   Total ___/20 Teacher's Signature Parent's Signature
✂ answer key — fold or cut before handing out

1-A   2-A   3-A   4-A  |  5 email   6 list   7 = git config --global user.name 'Ali'; git config --global user.email 'a@x.com'   8 = Every commit records the author   9 = git config user.email  |  10 = ~/.gitconfig in your home folder

📄 Need offline practice?Download the print-ready PDF or open the one-page cheat sheet.
⬇ Worksheet PDF 🗒 Cheat Sheet