Skip to content

Commit f0bbd2c

Browse files
committed
Paring back the scope of our shared .gitignore
Importantly, limit the exclusion of build.properties to the file in the root directory, paving the way for the return of an SBT build. - Unignores .bak, .jar, and ~ - limit ignorance of qbin to the root directory .log files, generated by partest, are still ignored. To see ignored files in your workspace, try: git ls-files --others --ignored --exclude-standard -- test | grep log git status --ignored -- test
1 parent 996a95d commit f0bbd2c

File tree

1 file changed

+15
-10
lines changed

1 file changed

+15
-10
lines changed

.gitignore

+15-10
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,21 @@
99
# see also test/files/.gitignore
1010
#
1111

12-
*.jar
13-
*~
12+
#
13+
# JARs aren't checked in, they are fetched by Ant / pull_binary_libs.sh
14+
#
15+
# We could be more concise with /lib/**/*.jar but that assumes
16+
# a late-model git.
17+
#
18+
/lib/ant/*.jar
19+
/lib/*.jar
20+
/test/files/codelib/*.jar
21+
/test/files/lib/*.jar
22+
/test/files/speclib/instrumented.jar
23+
/tools/*.jar
1424

15-
build.properties
25+
# Developer specific Ant properties
26+
/build.properties
1627

1728
# target directories for ant build
1829
/build/
@@ -33,11 +44,5 @@ build.properties
3344
/.idea
3445
/.settings
3546

36-
# bak files produced by ./cleanup-commit
37-
*.bak
38-
3947
# Standard symbolic link to build/quick/bin
40-
qbin
41-
42-
# Mac specific, but that is common enough a dev platform to warrant inclusion.
43-
.DS_Store
48+
/qbin

0 commit comments

Comments
 (0)