From ae72f3877e078db624ec2e3ce94e9a1a9ef78e59 Mon Sep 17 00:00:00 2001 From: Rob Greene Date: Fri, 2 Mar 2018 19:54:09 -0600 Subject: [PATCH] Documenting gitignore, per #15 in preparation for #12. --- .gitignore | 34 ++++++++++++++++++++++------------ 1 file changed, 22 insertions(+), 12 deletions(-) diff --git a/.gitignore b/.gitignore index 79ae8f6..a4e14b8 100644 --- a/.gitignore +++ b/.gitignore @@ -1,23 +1,33 @@ +# Gradle work directories and settings bin +.gradle +build/ + +# In case we run it locally, AppleCommander files we don't want to commit AppleCommander.preferences + +# Ignoring all disk images *.dsk *.po *.hdv *.do *.2mg *.2img -.uml -TODO.local -*.jpage -work -TestImage.* -**/Thumbs.db -*.o -*.lst +# But allowing disk images from the unit tests +!src/test/resources/disks/* + +# Eclipse .classpath .project .settings -.gradle -build/ -target/ -.DS_Store \ No newline at end of file +*.jpage + +# ca65 output we don't need to commit +*.o +*.lst + +# Mac OS X +.DS_Store + +# Windows +**/Thumbs.db