From 86a63bd613eafd5f63701f026319d49a02839a79 Mon Sep 17 00:00:00 2001 From: Paul Campbell Date: Fri, 10 Jun 2016 09:33:45 +0100 Subject: [PATCH 1/2] .gitignore: apply a common standard gitignore to use as template --- .gitignore | 49 ++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 48 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index a6f89c2..4ea327c 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,48 @@ -/target/ \ No newline at end of file +# Package Files # +*.jar +*.war +*.ear + +# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml +hs_err_pid* + +# maven build outputs +target/ + +# netbeans legacy +nbproject/ +nbactions.xml + +# eclipse legacy +.project + +# intellij +.idea/libraries/ +.idea/workspace.xml +.idea/uiDesigner.xml +.idea/compiler.xml +.idea/misc.xml +.idea/checkstyle.xml +.idea/artifacts/ +.idea/dataSources* +.idea/tasks.xml +.idea/dictionaries/ +.idea/shelf/ +.idea/dynamic.xml +.idea/sqlDataSources.xml +.idea/gradle.xml +.idea/mongoSettings.xml + +# Spring +spring.log +logs/ +/application.properties +/bootstrap.properties + +# Composer-style +vendor + +# Git and temp files +*.orig +*.patch +*~ From da1b84194f889e1ae3ebe38f05f91aaadf07e804 Mon Sep 17 00:00:00 2001 From: Paul Campbell Date: Tue, 14 Jun 2016 10:32:46 +0100 Subject: [PATCH 2/2] .gitignore: ignore zip files in template --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 4ea327c..4d3263f 100644 --- a/.gitignore +++ b/.gitignore @@ -2,6 +2,7 @@ *.jar *.war *.ear +*.zip # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml hs_err_pid*