Session 0 — Exercises: First Repository and GitHub Tour
Last updated on 2026-03-04 | Edit this page
Overview
In this session you will create your first repository on GitHub, write a short README, and explore the GitHub interface.
Time frame: approximately 60 minutes of hands-on work.
Task 1: Create Your First Repository
Step 1 — Create a new repository on GitHub
- Go to github.com and sign in.
- Click the + button in the top-right corner and select New repository.
- Name your repository
git-intro-<yourname>(replace<yourname>with your actual name or username). - Check Add a README file.
- Click Create repository.
Checkpoint 1
You should now see your new repository page with a
README.md file displayed.
Step 2 — Alter content of your README
Click the pencil icon (✏️) on the
README.mdfile to edit it.-
Add a heading with your name and 2–3 bullet points about yourself, for example:
Scroll down, write a short commit message (e.g. “Add personal info to README”), and click Commit changes.
Checkpoint 2
Your README now shows your name and personal information. You should see 2 commits in the repository history.
Level 3 — Explore Markdown formatting
Enhance your README with additional Markdown features:
- Add a link to this course material.
- Add a numbered list of your top 3 goals for this workshop.
- Try using bold and italic text.
Task 2: Explore the GitHub Interface
Level 1 — Navigate the repository page
Explore the following areas of your repository and note what you find:
- Code tab — Where are your files listed?
- Commits — Click on the commit count to see your commit history.
- Settings — Find where you can change the repository name or visibility.
Checkpoint 3
You can navigate to the commit history and identify who made each commit and when.
Summary
By the end of this session you should have: