On Fri, 19 Dec 2008, jidanni@xxxxxxxxxxx wrote: > > I had dreams of tracking only a few files in a large tree. > I thought I would maintain that list as a negated list in .gitignore, > and then always use "git-add ." to keep git's index reflecting my list. > > However that's just not possible. > > # head -n 5 .gitignore > * > !X11/xorg.conf > !anacrontab > !apt/apt.conf.d/10jidanni > !apt/sources.list > # git-add . > But git-status only shows anacrontab got added. None of the files in > the subdirectories get added. Yeah, the problem is that the '*' matches the subdirectories (like "X11"), but the negative matching does not. So the subdirectory gets ignored, and as a result, git won't even traverse into it and notice that there's a file in there that shouldn't be ignored. It's actually logical, but not what you want. So you have several possibilities: (a) either create a .gitignore that looks like this: * !X11 !X11/xorg.conf !anacrontab !apt !apt/apt.conf.d !apt/apt.conf.d/10jidanni !apt/sources.list which should work around it by telling git that it shouldn't ignore the subdirectories. (b) realize that ".gitignore" only matters for files that git doesn't already know about, so if you only want to track a small set of files, what you _should_ do is just do a .gitignore that looks like this: * and then just force-add the few files you want to track, using something like git add -f X11/xorg.conf anacrontab apt/apt.conf.d/10jidanni apt/sources.list and now you're done - git won't ignore them, since explciitly you told git to track them. (c) Try to teach git to not ignore subdirectories leading up to non-ignored files, and give you the .gitignore semantics you like. I suspect it's not worth it, because the git behaviour is logical once you know about it and understand it. .. and possibly other things you could do too. Linus -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html