From 592daa37ac75fe6d1507dce03f07d6b8e952afdd Mon Sep 17 00:00:00 2001 From: mckay Date: Sun, 5 Jan 2025 17:46:20 +0800 Subject: [PATCH] Update .gitignore to exclude additional directories - Added 'exps/' and 'summary/' directories to the .gitignore file to prevent tracking of experimental and summary data. - Retained existing exclusion for 'data/' while removing the specific exclusion for 'data/*' to allow for potential subdirectory tracking. --- .gitignore | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 802ffce..c38fdde 100644 --- a/.gitignore +++ b/.gitignore @@ -130,5 +130,7 @@ dmypy.json data_backup/ -data/* +data/ +exps/ +summary/ *.csv \ No newline at end of file