Tracked files are files that were in the last snapshot, as well as any newly staged files; they can be unmodified, modified, or staged
To stop tracking a file we have to remove it from the cache using remove

# Remove a Tracked File
git rm --cached <file-name> 
 
# Untrack all files in Repo
git rm -r --cached .