I have a site that has a /sites/default/files/ directory where user content is typically kept. Figuring that I don't need to be tracking this stuff, I added /sites/default/files/ to my .gitignore file.
Then.. I discovered that I also wanted to keep some mostly-perminent uploads in that directory as well. Now it makes more sense to track everything in /sites/default/files/ and exclude undesirably subdirectories, instead of doing it the other way around.
The problem is that git won't stop ignoring that directory. I have removed the lines from .gitignore that specify this directory and it won't track it. I have the option to use git add /sites/default/files/ -f to force git to track the directory, but I've done that before and it seems messy. If .gitignore no longer specifies that directory as ignored, why would I have to force git to start tracking those files?
EDIT
I think I may have an abnormal situation here. At the advice of J-16 (below) I used the -f flag, but it doesn't seem to solve the problem. After forcing git to add the files directory, new files are not found.
The following shell command exchange makes me wonder if there is another file that continues to ignore this directory:
/c/wamp/www/stc (master)$ git add sites/default/files/ -f
/c/wamp/www/stc (master)$ git add sites/default/files/
The following paths are ignored by one of your .gitignore files:
sites/default/files
Use -f if you really want to add them.
fatal: no files added
However, as mentioned below, I cannot find any other .gitignore files in C:/wamp/www/stc (my local webroot and git root) and the exclude file is empty.
git add -f sites/default/files/*to add the specific files, rather than adding the directory. – twalberg Jun 21 '12 at 16:07git add -f sites/default/files/*didn't do it: when Itouch sites/default/files/test.minegit still doesn't see it. – doub1ejack Jun 21 '12 at 18:09.gitignorethat match then - some wildcard of some sort or something? Or something that would cause the individual files to be ignored - like a*.pyc, and that directory only containing.pycfiles? Remember that namingfilein.gitignorealso matches anysubdirectory/fileorsub/subdir/file... – twalberg Jun 21 '12 at 18:20files/hidden among some other stuff and I was looking forsites/default/... Well that was a lot of effort over a stupid mistake. sigh. thanks. – doub1ejack Jun 22 '12 at 14:42