From 93e03d479def518697f052cfdab34cdbab991f29 Mon Sep 17 00:00:00 2001 From: Jason Zaugg Date: Mon, 20 Apr 2015 14:37:54 +1000 Subject: Avoid wildcard ignorance of files named 'target'. In favour of explicitly ignoring the ones we know contain SBT build output. Rationale: we used to have a package named target. Admittedly we thought better of that (55109d0d253) so it is now called `meta`, but let's not get lazy and encode a poor practice into our gitignore. --- .gitignore | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to '.gitignore') diff --git a/.gitignore b/.gitignore index e3bc794f08..d6571a377f 100644 --- a/.gitignore +++ b/.gitignore @@ -50,5 +50,7 @@ /qbin # Sbt's target directories -**/target/ +/target/ +/project/target/ +/project/project/target /build-sbt/ -- cgit v1.2.3