From 83f0a20f1686e8390c129e31b9c09eb72681e015 Mon Sep 17 00:00:00 2001 From: Patrick Damme Date: Mon, 22 Apr 2024 19:43:20 +0200 Subject: [PATCH] [MINOR] Changed root .gitignore. - So far, daphne/mlir/log files where ignored everywhere (but daphne-files were allowed under test/). - But actually, I think we want to disallow them only in the DAPHNE root directory (where they are put sometimes and clutter the list of files) and allow them everywhere else, e.g., under scripts/, test/, etc. --- .gitignore | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/.gitignore b/.gitignore index 8ad3aad23..f607968d4 100644 --- a/.gitignore +++ b/.gitignore @@ -29,10 +29,10 @@ __pycache__/ .clion.source.upload.marker # local test/dev scripts -tmpdaphne.daphne -*.daphne -*.mlir -*.log +/tmpdaphne.daphne +/*.daphne +/*.mlir +/*.log # cuda compiler compiler-debug-cuda.txt @@ -61,7 +61,3 @@ profiler/ precompiled-dependencies/ /cmake*/ /data - -# Allow .daphne and .mlir files in test/ -!test/**/*.mlir -!test/**/*.daphne