From 41ebb7d609993f8bff184877d769f330bb4c7dd3 Mon Sep 17 00:00:00 2001 From: BuildTools Date: Sun, 4 Aug 2024 14:26:30 -0700 Subject: [PATCH] add gitignore file --- .gitignore | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e7c15c0 --- /dev/null +++ b/.gitignore @@ -0,0 +1,15 @@ +# Ignore __pycache__ directories +__pycache__/ + +# Ignore everything +* + +# But allow these file types +!*.py +!*.bat +!*.txt +!*.md +!LICENSE + +# Don't ignore .gitignore +!.gitignore