Skip to content

Instantly share code, notes, and snippets.

@cbcafiero
Last active December 9, 2021 13:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cbcafiero/ac8b2fbd2ec50343507dd5a0aeec9f38 to your computer and use it in GitHub Desktop.
Save cbcafiero/ac8b2fbd2ec50343507dd5a0aeec9f38 to your computer and use it in GitHub Desktop.
Global .gitignore
# 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