Using git status to see current state
📖 Scenario: You are working on a project and want to check what files have changed, which files are staged, and the current branch you are on.
🎯 Goal: Learn how to use the git status command to see the current state of your git repository.
📋 What You'll Learn
Have a git repository initialized
Make some changes to files
Use
git status to check the current state💡 Why This Matters
🌍 Real World
Developers use <code>git status</code> daily to understand what changes are staged, unstaged, or untracked before committing code.
💼 Career
Knowing how to check the git repository state is essential for version control and collaboration in software development jobs.
Progress0 / 4 steps