Last active
December 9, 2021 13:24
-
-
Save cbcafiero/ac8b2fbd2ec50343507dd5a0aeec9f38 to your computer and use it in GitHub Desktop.
Global .gitignore
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Keys | |
*.key | |
*.pub | |
# OSX file system junk | |
.DS_Store | |
# Python cache, bytecode, and other | |
__pycache__ | |
*.pyc | |
*.egg* | |
*.cfg | |
MANIFEST | |
.pytest_cache | |
coverage.xml | |
.coverage* | |
.tox/ | |
.nox/ | |
nosetests.xml | |
*.mo | |
*.pot | |
.ipynb_checkpoints | |
# Jetbrains project files | |
.idea | |
*.iml | |
*.cpb | |
# LaTeX intermediates | |
*.aux | |
*.out | |
*.bbl | |
*.bcf | |
*.blg | |
*.fls | |
*.run.xml | |
*.toc | |
*.fdb_* | |
# Archives of various types | |
*.zip | |
*.gz | |
*.7z | |
# Emacs autosave | |
*.*~ | |
# Java classes and JARs | |
*.class | |
*.jar | |
# Scala | |
.bsp | |
*.cache | |
$* | |
.history* | |
# C/C++ objects and artifacts | |
cmake-build-debug | |
build | |
*.o | |
*.obj | |
*.dylib | |
*.d | |
*.slo | |
*.lo | |
# Rust | |
**/*.rs.bk | |
Cargo.lock | |
debug/ | |
target/ | |
# Project dependencies | |
node_modules | |
.venv | |
# Scheme | |
*.ss~ | |
*.ss#* | |
.#*.ss | |
*.scm~ | |
*.scm#* | |
.#*.scm | |
# Other stuff | |
core.* | |
*.log | |
*.tmp | |
*.lock | |
*.so | |
local_settings.py | |
db.sqlite3 | |
db.sqlite3-journal | |
# If I used Windows, I'd also add... | |
Thumbs.db | |
*.exe | |
.vs | |
.vscode | |
*.exe | |
*.dll | |
# ...and a bunch of other stuff, no doubt |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment