Vibe Launchpad
Level 1 · 0 XPSign in
GitHub· Step 3 of 80 cleared in this quest
Step 3 · about 3 minutes

What a repository actually is

One idea, two minutes, no clicking. Everything after this assumes you have it.

A repository — repo for short — is a folder whose every change is recorded. Not just the current state of your files: every version of them, with a note about what changed and when.

Think of a document where every save is kept forever and labelled. You can read any old version, compare two of them, or go back. A repo does that for a whole folder of files.

  • A commit is one recorded change, with a short message you write.
  • The history is all the commits, in order.
  • The repo is the folder plus that history.