From 077c46ff0dc080b7810df5eefa5e13deed1e6b9a Mon Sep 17 00:00:00 2001 From: chatgptagent Date: Sat, 17 Jan 2026 13:52:48 +0000 Subject: [PATCH] Add .gitignore to ignore ISO and executable files --- .gitignore | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..317a35e --- /dev/null +++ b/.gitignore @@ -0,0 +1,22 @@ +# Ignore ISO and executable files +*.iso +*.exe +*.dll + +# Ignore logs +*.log + +# Ignore build and distribution directories +build/ +dist/ +node_modules/ + +# Python and Java artifacts +__pycache__/ +*.class +*.jar +*.war + +# OS-specific files +.DS_Store +Thumbs.db