Feedback

Chat Icon

Learn Git in a Day

Everything you need, nothing you don't

Your First Save Point
22%

The Checkpoint Before the Checkpoint

Now let's check the status again:

git status

Git will show:

Untracked files:
  calculator.py

Git sees the file, but it's untracked - Git isn't managing it yet. To include it in our next commit, we need to stage it.

The staging area (also called the index) is like a preparation zone. It lets you choose exactly which changes to include in your next commit, rather than committing everything at once.

This means files in a Git project live in one of three places:

  Working Directory         Staging Area            Repository
  (your files on disk)      (what's queued          (committed
                            for the next commit)

Learn Git in a Day

Everything you need, nothing you don't

Enroll now to unlock all content and receive all future updates for free.

Unlock now  $9.99$7.49

Hurry! This limited time offer ends in:

To redeem this offer, copy the coupon code below and apply it at checkout:

Learn More