SOLR-10713: Add common output files to .gitignore

Signed-off-by: Mike Drob <mdrob@apache.org>
This commit is contained in:
Jason Gerlowski 2017-06-04 16:59:25 -04:00 committed by Mike Drob
parent 6b022c98f9
commit 99093caec5
3 changed files with 39 additions and 34 deletions

41
.gitignore vendored
View File

@ -1,20 +1,19 @@
# . # .
/eclipse-build /eclipse-build
/classes /classes
**/build build
/idea-build /idea-build
**/dist dist
**/lib lib
**/test-lib test-lib
/*~ /*~
/velocity.log /velocity.log
/build.properties /build.properties
/.idea /.idea
lucene/**/*.iml lucene/**/*.iml
solr/**/*.iml
parent.iml parent.iml
**/*.ipr *.ipr
**/*.iws *.iws
/.project /.project
/.classpath /.classpath
/.settings /.settings
@ -22,33 +21,7 @@ parent.iml
/prj.el /prj.el
/bin /bin
/bin.* /bin.*
**/pom.xml pom.xml
/nbproject /nbproject
/nb-build /nb-build
.pydevproject .pydevproject
/solr/package
# can this be minimized?
/solr/example/start.jar
/solr/example/webapps/*
/solr/example/logs/*.log
/solr/example/**/data
/solr/example/solr/lib
/solr/example/solr/logs
/solr/example/solr/zoo_data
/solr/example/work/*
/solr/example/exampledocs/post.jar
/solr/example/example-DIH/**/data
/solr/example/example-DIH/**/dataimport.properties
/solr/example/example-DIH/solr/mail/lib/*.jar
solr/contrib/dataimporthandler/test-lib/
solr/core/test-lib/
solr/server/logs/
solr/server/solr/zoo_data/
solr/server/solr-webapp
solr/server/start.jar

30
solr/.gitignore vendored Normal file
View File

@ -0,0 +1,30 @@
*.iml
/bin/*.pid
/contrib/dataimporthandler/test-lib/
/core/test-lib/
/example/start.jar
/example/webapps/*
/example/logs/*.log
/example/**/data
/example/solr/lib
/example/solr/logs
/example/solr/zoo_data
/example/work/*
/example/exampledocs/post.jar
/example/example-DIH/**/data
/example/example-DIH/**/dataimport.properties
/example/example-DIH/solr/mail/lib/*.jar
/package
/server/logs/
/server/solr/zoo_data/
/server/solr-webapp
/server/start.jar
*.out
*.err

View File

@ -236,6 +236,8 @@ Other Changes
* SOLR-10671: Add abstract doInit method to the SolrMetricReporter base class. * SOLR-10671: Add abstract doInit method to the SolrMetricReporter base class.
(Christine Poerschke, Anshum Gupta) (Christine Poerschke, Anshum Gupta)
* SOLR-10713: Ignore .pid and .out files in solr working directory (Jason Gerlowski via Mike Drob)
================== 6.7.0 ================== ================== 6.7.0 ==================
Consult the LUCENE_CHANGES.txt file for additional, low level, changes in this release. Consult the LUCENE_CHANGES.txt file for additional, low level, changes in this release.