From a6e195eb0ec03a4650cc32b1b46fafc51ffe2540 Mon Sep 17 00:00:00 2001 From: Nic McPhee Date: Thu, 17 Dec 2020 08:15:40 -0600 Subject: [PATCH] Add `data` and `.calva` to .`gitignore` We don't want to be committing the data files or the Calva files generated by running Clojure in VS Code. This fixes that. --- .gitignore | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 5211373..d061ca6 100644 --- a/.gitignore +++ b/.gitignore @@ -12,4 +12,10 @@ pom.xml.asc .hg/ out notes -.idea/ \ No newline at end of file +.idea/ +.calva/ + +# Don't commit the data directory that we'll +# use to hold the data from +# https://github.com/thelmuth/program-synthesis-benchmark-datasets +/data \ No newline at end of file