If git only shows that the directory is untracked, then every file in it (including files in subdirectories) is untracked.
If you have some ignored files in the directory, pass the -u
flag when running git status
(i.e., git status -u
) to show the status of individual untracked files.