From 21925162ceb438823825d9d29e7aaca2f9dd8392 Mon Sep 17 00:00:00 2001 From: torbensky Date: Tue, 14 Jan 2014 11:36:37 -0800 Subject: [PATCH] Fix patterns from The original ignore was far too general and results in eliminating packages named "db" or "project", for example. These are not that uncommon for package names. Also added a lot of other common, Playframework project related ignore patterns (Scala/Java/sbt/Eclipse). --- PlayFramework.gitignore | 48 ++++++++++++++++++++++++++++++----------- 1 file changed, 36 insertions(+), 12 deletions(-) diff --git a/PlayFramework.gitignore b/PlayFramework.gitignore index 3bf02289..21b79de9 100644 --- a/PlayFramework.gitignore +++ b/PlayFramework.gitignore @@ -1,19 +1,43 @@ +# General Java / Scala ignore +*.class +*.log + + +# eclipse ignores +.project +.metadata +.classpath +*.tmp +*.bak +*.swp +.settings/ + +# Locally stored "Eclipse launch configurations" +*.launch + # Ignore Play! working directory # -bin -db -eclipse -lib -log -logs -modules +/db +.eclipse +/lib/ +/logs/ +/modules precompiled -project/project -project/target -target -tmp +/project/project +/project/target +/target +tmp/** +tmp/**/* test-result server.pid *.iml *.eml -dist +/dist/ .cache + +# sbt ignore +.history/ +.lib/ + +# Scala-IDE specific +.scala_dependencies +.worksheet