I am getting my feet wet on git and have the following issue:

My project source tree:

/
|
+--src/
+----refs/
+----...
|
+--vendor/
+----...

I have code (currently MEF) in my vendor branch that I will compile there and then move the references into /src/refs which is where the project picks them up from.

My issue is that I have my .gitignore set to ignore *.dll and *.pdb. I can do a 'git add -f bar.dll' to force the add of the ignored file which is ok, the problem is I can not figure out to list what files exist that are ignored.

I want to list the ignored files to make sure that I don't forget to add them.

I have read the man page on git ls-files and can not make it work. It seems to me that 'git ls-files --exclude-standard -i' should do what I want. What am I missing?

UPDATE:

git ls-files -i will not work, you get the error: ls-files: --ignored needs some exclude pattern

git ls-files --others -i --exclude-from=.git/info/exclude as VonC sugested below is indeed the answer. the --exclude-standard option also works instead of --exclude-from.

Summary of what works:

git ls-files --others -i --exclude-from=.git/info/exclude
git ls-files --others -i --exclude-standard
link|improve this question

7  
These days, you wouldn't use git-ls-files but rather 'git ls-files' – wojo Jun 10 '09 at 20:40
feedback

3 Answers

up vote 32 down vote accepted

Note: MattDiPasquale's answer (to be upvoted) git clean -ndX is a simpler solution, displaying a preview of what ignored files could be removed (without removing anything)


git ls-files -i

should work, except its source code indicates:

if (show_ignored && !exc_given) {
                fprintf(stderr, "%s: --ignored needs some exclude pattern\n",
                        argv[0]);

exc_given ?

It turns out it need one more parameter after the -i to actually list anything:

Try:

git ls-files -i --exclude-from=[Path_To_Your_Global].gitignore

(but that would only list your cached (non-ignored) object, with a filter, so that is not quite what you want)


Example:

$ cat .git/ignore
    # ignore objects and archives, anywhere in the tree.
    *.[oa]
    $ cat Documentation/.gitignore
    # ignore generated html files,
    *.html
    # except foo.html which is maintained by hand
    !foo.html
    $ git ls-files --ignored \
        --exclude='Documentation/*.[0-9]' \
        --exclude-from=.git/ignore \
        --exclude-per-directory=.gitignore

Actually, in my 'gitignore' file (called 'exclude'), I find a command line that could help you:

F:\prog\git\test\.git\info>type exclude
# git ls-files --others --exclude-from=.git/info/exclude
# Lines that start with '#' are comments.
# For a project mostly in C, the following would be a good set of
# exclude patterns (uncomment them if you want to use them):
# *.[oa]
# *~

So....

git ls-files --others --ignored --exclude-from=.git/info/exclude
git ls-files -o -i --exclude-from=.git/info/exclude

git ls-files --others --ignored --exclude-standard
git ls-files -o -i --exclude-standard

should do the trick.

As mentioned in the ls-files man page, --others is the important part, in order to show you non-cached, non-committed, normally-ignored files.

--exclude_standard is not just a shortcut, but a way to include all standard "ignored patterns" settings.

exclude-standard
Add the standard git exclusions: .git/info/exclude, .gitignore in each directory, and the user's global exclusion file.

link|improve this answer
Very nice. I'm continually surprised at what Git can do. – Paul Jan 22 '09 at 0:53
the best documentation, read the source code :) – igorgue Feb 19 '09 at 17:10
Thank you, dbr, for fixing the style of git commands. – VonC May 9 '09 at 23:41
2  
I understand. I don't want to use Google for something that should be intuitive. I can't remember all this nonsense (Thanks for the correct solution, though!) as easily as "hg stat -i". – gatoatigrado Dec 9 '10 at 5:18
2  
@gatoatigrado, check out this way to show ignored files in Git. git clean -dXn is really pretty easy. I use it all the time. – MattDiPasquale May 8 '11 at 20:56
show 2 more comments
feedback

Another option that's pretty clean (No pun intended.):

git clean -ndX

Explanation:

git help clean

git-clean - Remove untracked files from the working tree
-n, --dry-run - Don't actually remove anything, just show what would be done.
-d - Remove untracked directories in addition to untracked files.
-X - Remove only files ignored by git.

Note: This solution will not show ignored files that have already been "cleaned."

Cheers, mate.

Matt

P.S. I'm not actually Australian, just proud of my answer. :)

link|improve this answer
Nifty... however the reason I asked the original question was so that I could make sure that vendor files (*.dll) that were supposed to be there were... so deleting them would not be the desired result. HOWEVER: this is good to know as I have changed my strategy from ignoreing *.dll to ignoring my build output folder (but not my vendor folders). This would be a good alternative to make clean and very helpful on a build server. – Andrew Burns Feb 26 '10 at 16:56
1  
Glad to help. When used with the -n option, as shown above, git clean doesn't delete anything. – MattDiPasquale Jun 28 '10 at 19:15
sure, this seems easier. +1 I have referenced it in my answer. – VonC May 8 '11 at 21:35
1  
I'm using git version 1.7.0.4, and the two commands ('git ls-files -o -i --exclude-standard', 'git clean -dXn') are not equivalent. The first show me 4 files, and the second only two. (.gitignore~, index.php~, sql/create_users.sql~, www/index.php~) (Would remove .gitignore~, Would remove index.php~). Am I missins something here? – Cesar Jun 15 '11 at 21:00
@VonC, sweet! Thanks! @Cesar, I'm not sure. I'm not so familiar with git ls-files -o -i --exclude-standard. git clean -dXn has always been what I wanted but doesn't show ignored files that have already been removed. git ls-files -o -i --exclude-standard might do that. So, that might be what's causing the difference. – MattDiPasquale Jun 16 '11 at 1:09
show 2 more comments
feedback

While generally correct your solution does not work in all circumstances. Assume a repo dir like this:

# ls **/*                                                                                                       
doc/index.html  README.txt  tmp/dir0/file0  tmp/file1  tmp/file2

doc:
index.html

tmp:
dir0  file1  file2

tmp/dir0:
file0

and a .gitignore like this:

# cat .gitignore
doc
tmp/*

This ignores the doc directory and all files below tmp. Git works as expected, but the given command for listing the ignored files does not. Lets have a look at what git has to say:

# git ls-files --others --ignored --exclude-standard                                                            
tmp/file1
tmp/file2

Notice that doc is missing from the listing. You can get it with:

# git ls-files --others --ignored --exclude-standard --directory                                                
doc/

Notice the additional --directory option.

From my knowledge there is no one command to list all ignored files at once. But I don't know why tmp/dir0 does not show up at all.

link|improve this answer
This got me what I wanted, whereas the others did not (for my particular case)... thanks! It's frustrating to have to run two commands, but with an ignored directory, the --directory option at least finds me that, and I can pipe that into a find command to find the files. Thanks! – lindes yesterday
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.