From da3e9ee02cf55fbcdaba67daadeb7d8fcb43dcfd Mon Sep 17 00:00:00 2001 From: Michalis Kamburelis Date: Tue, 4 Jul 2023 19:16:30 +0200 Subject: [PATCH] Ignore the bin subdirectory of repo for GIT The bin subdirectory is filled with compilation outputs, like bin/x86_64-linux/bin/OnlyOneNeuronOrOperation . I'd suggest to add it to `.gitignore`, so that `git status` remains clean after compilations. --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index ad29a6e9..25e5e2e5 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ experiments opencl libs readme.txt +/bin/ \ No newline at end of file