From 80bec6ab2fc2df64e2d27cd08f1a50116f390dab Mon Sep 17 00:00:00 2001 From: Vijay Janapa Reddi Date: Sat, 8 Nov 2025 18:54:11 -0500 Subject: [PATCH] fix: Replace wildcard gitignore that was preventing file checkout --- .gitignore | 108 ++++++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 106 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index f514b74c..a87820da 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,106 @@ -# Created by venv; see https://docs.python.org/3/library/venv.html -* +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] +*$py.class + +# C extensions +*.so + +# Distribution / packaging +.Python +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +wheels/ +share/python-wheels/ +*.egg-info/ +.installed.cfg +*.egg +MANIFEST + +# PyInstaller +*.manifest +*.spec + +# Unit test / coverage reports +htmlcov/ +.tox/ +.nox/ +.coverage +.coverage.* +.cache +nosetests.xml +coverage.xml +*.cover +*.py,cover +.hypothesis/ +.pytest_cache/ +cover/ + +# Jupyter Notebook +.ipynb_checkpoints + +# IPython +profile_default/ +ipython_config.py + +# pyenv +.python-version + +# Virtual environments +.env +.venv +env/ +venv/ +ENV/ +env.bak/ +venv.bak/ +bin/ +include/ +lib/ +lib64/ +pyvenv.cfg +share/ + +# IDEs +.vscode/ +.idea/ +*.swp +*.swo +*~ +.DS_Store + +# Jupyter Book +book/_build/ + +# NBGrader +assignments/autograded/ +assignments/feedback/ +assignments/submitted/ + +# Logs +*.log + +# Database +*.db +*.sqlite + +# OS +.DS_Store +Thumbs.db + +# Temporary files +*.tmp +*.temp + +# Project specific +tito-cli.log +COMMIT_LOG.txt