From d7c53dca350313730d5cf63998c1f3ae2430d482 Mon Sep 17 00:00:00 2001 From: ZQ Date: Sun, 14 May 2023 23:07:20 +0800 Subject: [PATCH] Add bin/ folder to .gitignore Previously, running the command ./gradlew in the terminal generated a bin folder containing all the .class files. To prevent accidentally committing files to the repository, let's adds /bin/ to the .gitignore file --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 71c9194e8..edd9f5cc6 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,7 @@ # Gradle build files /.gradle/ /build/ +/bin/ src/main/resources/docs/ # IDEA files