Overview - Untracked vs tracked files
What is it?
In Git, files in your project can be either tracked or untracked. Tracked files are those Git already knows about and monitors for changes. Untracked files are new files in your project folder that Git has not yet started tracking. Understanding the difference helps you control what changes get saved in your project history.
Why it matters
Without knowing which files are tracked or untracked, you might accidentally lose work or commit unwanted files. This distinction helps you manage your project history cleanly and avoid confusion about what changes are included in your version control. Without it, your project history could become messy or incomplete.
Where it fits
Before learning this, you should know basic file system concepts and how to create files. After this, you can learn about staging files, committing changes, and branching in Git to manage your project versions effectively.