From 9e35ef8d0e9deb00ffe530d8f44b4821b08a162f Mon Sep 17 00:00:00 2001 From: Kerem Keptig <kerem.keptig@stud-mail.uni-wuerzburg.de> Date: Thu, 13 Mar 2025 15:40:03 +0100 Subject: [PATCH] Update file .gitignore --- .gitignore | 63 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 63 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..3582f45 --- /dev/null +++ b/.gitignore @@ -0,0 +1,63 @@ +# Ignore Jupyter Notebook checkpoints +.ipynb_checkpoints/ + +# Ignore IDE and editor settings +.idea/ +.vs/ +.vscode/ +*.sublime-workspace + +# Ignore OS-specific files +.DS_Store +Thumbs.db + +# Ignore Python cache files +__pycache__/ +*.py[cod] +*.so + +# Ignore virtual environments +venv/ +.env/ +*.venv + +# Ignore dependency lock files +Pipfile.lock +poetry.lock + +# Ignore log files +logs/ +*.log +nohup.out + +# Ignore large dataset files +*.csv +*.tsv +*.json +*.txt + +# Ignore large image files +*.png +*.jpg +*.jpeg +*.bmp +*.tiff +*.svg + +# Ignore compressed files +*.zip +*.tar +*.tar.gz +*.tgz +*.rar + +# Ignore compiled files +*.o +*.a +*.out +*.exe +*.dll + +# Ignore dataset & processed data folders +datasets/ +data/ -- GitLab