Module 2 · ~30 min
Your first repository
Goal: Create a repository, understand its main screens, and make your first commit on the web.
What is a repository?
A repository (repo) is a project folder tracked by Git. It holds code, docs, images, and a full history of every change.
Steps — create a practice repo
- Click + → New repository.
- Set name
hello-github, Public, check Add a README file, then Create repository. - Identify tabs: Code, Issues, Pull requests, Settings.
- Edit
README.md→ addHello GitHub — my first repo.→ commit messageUpdate README with intro line→ Commit changes.
Read the commit history
Click the commit count link (e.g. “2 commits”). Each commit shows who changed what and when — that history is the core value of Git.
Checklist
- I created a repository with a README
- I edited a file and committed on the web
- I can open the commit history and see my change
- I know where Issues and Pull requests tabs are