Back to Map
🚀
We're using the "Remote-First" approach, which means creating your repository on GitHub.com first, then cloning it to your computer. This is the cleanest way to start a new project!

🌈 Step-by-Step Guide

1

Log in to GitHub

Go to GitHub.com and sign in to your account.

2

Start a New Repository

Select the + dropdown (top-right corner) and click New repository.

3

Name Your Repository

Use a specific, short name (e.g., mental-model-1).

💡
Naming Tips:
  • Use lowercase letters
  • Replace spaces with hyphens (-)
  • Keep it descriptive but concise
  • Avoid special characters
4

Set Visibility

Select visibility (public for this course).

Public
Anyone can see this repository. Great for portfolios and open-source projects.
Private
Only you (and people you invite) can see this repository.
5

Initialize With Files

This is an important step! Check these boxes:

Add a README file

Check this box! A README is like the front page of your project. It tells visitors what your project is about.

Add .gitignore

Select a template based on your project type, for example:

  • Node - for JavaScript/Node.js projects (a good default to select)
  • Python - for Python projects

This prevents uploading hidden system files that shouldn't be in your repository! Ask Copilot to configure this file properly if you're unsure.

6

Create!

Click the big green Create repository button.

🎉 Congratulations! Your repository now exists on GitHub!

📋 Quick Reference Checklist

1. Name
something-descriptive
2. Description
(optional but helpful)
3. Visibility
Public or Private
4. README file
☑ Check this box
5. .gitignore
☑ Choose a template

✨ Try It Now!

Create a "Sandbox" repository right now just to practice. You can delete it later! This is a safe space to experiment.

Back to Map