Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the git command to list ignored files? [duplicate]

Tags:

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?

like image 997
MEM Avatar asked Sep 03 '13 16:09

MEM


1 Answers

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.

like image 164
Max Avatar answered Oct 07 '22 08:10

Max