From the course: Git from Scratch
Unlock this course with a free trial
Join today to access over 25,300 courses taught by industry experts.
git status: Get the current status - Git Tutorial
From the course: Git from Scratch
git status: Get the current status
- [Narrator] At any point, if you're wondering what you've changed in your project since the last committed snapshot, you can ask for the git status. git, the omnipotent passive observer of all things will list out each changed file and the current status of each file for you. That status will be either changed, but not staged. Or added to staging and ready to be committed to history. Running git status is asking time to stop temporarily so you can get a freeze frame of what is happening, the literal status within your project at any time.