views:

116

answers:

1

My git works fine in my app, except it doesn't respond to my vendor/plugins/paperclip directory. I can make a change in vendor/plugins/whatever and git status will show it, but not in vendor/plugins/paperclip. My .gitignore file only gas log* and public/system in it. I'm pretty stumped...searched google & asked in IRC, but nothing. Any ideas?

A: 

You might re-read http://www.kernel.org/pub/software/scm/git/docs/gitignore.html , then check for the presence of alternate .gitignore files.

find . -name .gitignore

from the project root might reveal something.

Dave W. Smith