Skip to content

Instantly share code, notes, and snippets.

@HunterKohler
Last active April 3, 2022 08:26
Show Gist options
  • Save HunterKohler/3d2cbe54a6dc09bd4a1955c9a0b99666 to your computer and use it in GitHub Desktop.
Save HunterKohler/3d2cbe54a6dc09bd4a1955c9a0b99666 to your computer and use it in GitHub Desktop.
General .gitignore base for all projects.
# System Files
.DS_Store
# Editor Files
.vscode/
# Build Directories
bin/
build/
dist/
out/
# Pre-requisites
*.d
# Temporary
temp.*
tmp.*
temp
tmp
# Objects
*.o
*.ko
*.obj
*.elf
# Precompiled Headers
*.gch
*.pch
# Static Libs
*.lib
*.a
# Shared Libs
*.dll
*.so
*.so.*
*.dylib
# Binaries
*.exe
*.out
# Debug Info
*.dSYM/
*.su
# Build Caches
__pycache__/
*.pyc
*.tsbuildinfo
# Coverage
.coverage
.lcov.info
clover.xml
coverage/
lcov-report/
*.lcov
# Environment
.env
.*.env
.env.*
*.env
env/
venv/
# Logs
*.log
*.pid
# NPM
node_modules/
package-lock.json
# Generated Source
*.tab.c
*.yy.c
# Latex
*.aux
*.fls
*.synctex.gz
*.fdb_latexmk
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment