From fd2488cf59f0f19ee0e09ca4792fc2262bc4708e Mon Sep 17 00:00:00 2001 From: Ibrahim Mkusa Date: Fri, 14 Apr 2017 09:51:08 -0400 Subject: Tell git to ignore temporary files --- .gitignore | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 .gitignore (limited to '.gitignore') diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..49a9d25 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +# ignore temporary files +*~ -- cgit v1.2.3 From 413d13d7a65fdb6797903a0c56808730fd265b37 Mon Sep 17 00:00:00 2001 From: Ibrahim Mkusa Date: Sat, 15 Apr 2017 20:56:47 -0400 Subject: created modules/general.rkt to house common functions --- .gitignore | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to '.gitignore') diff --git a/.gitignore b/.gitignore index 49a9d25..7c07843 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,10 @@ # ignore temporary files *~ + +# ignore logs and configuration files +*.out +*.conf + +# ignore racket compile files +*.dep +*.zo -- cgit v1.2.3 From 684f172537d838cb85ade3480600325d50a6c544 Mon Sep 17 00:00:00 2001 From: Ibrahim Mkusa Date: Sun, 16 Apr 2017 18:45:22 -0400 Subject: use relative paths when opening files --- .gitignore | 1 + 1 file changed, 1 insertion(+) (limited to '.gitignore') diff --git a/.gitignore b/.gitignore index 7c07843..b917769 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,6 @@ # ignore temporary files *~ +*.txt # ignore logs and configuration files *.out -- cgit v1.2.3