Staging Area
Learn what the staging area is and how it helps you control what goes into a commit. The staging area is an intermediate step between the working directory and a commit.
What is the staging area?
The staging area lets you:
How it fits in the workflow?
# Check file status
git status
# Stage a specific file
git add index.js
# Stage all modified files
git add .
Last updated
Was this helpful?

