I\'m having a little trouble figuring out how to ignore all of these files that are created w/ Solr/Sunspot.
Basically I want to ignore everything inside of s
s
You should be able to do /solr/data or put a .gitignore file inside solr/data and just put *.
/solr/data
.gitignore
*
Note that you can't ignore things that have already been committed.