What are tracked files and untracked files in the context of Git?
A file is tracked if it is under version control. As a small example, a C++ project would have Makefile main.cpp interface.hpp worker.cpp as source files; you’d put these under version control. During build, main.o worker.o myapp are generated; these do not belong under version control, so you do not use git add on them. … Read more