33

My netbeans IDE shows ignored files on a different color. I presume, the IDE is knowing this by using some git command.

I wish to know what files on a project folder and subfolders are being ignored.

What command should we use?

MEM
  • 30,529
  • 42
  • 121
  • 191
  • @trojanfoe - as far as I can tell, I didn't understand the answer given on that question, hence, asking it again, expecting to have a more clear answer. That was the case. - For the sake of clarity, I presume this question and Max answer, should be kept on SO. – MEM Sep 03 '13 at 16:27

1 Answers1

80

git status --ignored will show all untracked files. It also includes the normal status output. There does not appear to be a status option to only show the ignored files.

Max
  • 21,123
  • 5
  • 49
  • 71