The Different Stages of Tracking Changes
Learn about the different stages a file goes through in Git.
We'll cover the following...
Under Git version control, a file can be in one of the following stages:
- Untracked files
- Tracked files with unstaged changes
- Tracked files with staged changes
- Committed changes
We can see the stages of the changes when we run git status
...