I'm getting a lot of untracked / modified files that are like this in my Rails app:
db/sphinx/development/user_core.spa
db/sphinx/development/user_core.spd
db/sphinx/development/book_core.sph
db/sphinx/development/book_core.spi
db/sphinx/development/book_core.spp
db/sphinx/development/book_core.sps
etc.
Should I include these when I commit and push in git, or should I put db/sphinx/development/* in my .gitignore file?
--EDIT after getting answer below--
I ended up adding this to my .gitignore file...
# Ignore certain Sphinx files
/db/sphinx/*
/config/*.sphinx.conf
...and then doing what is recommended here: Ignore files that have already been committed to a Git repository