Skip to content

Instantly share code, notes, and snippets.

@nemjit001
Last active June 15, 2020 10:43
Show Gist options
  • Save nemjit001/43aed115bdf0857864d2dd438b36b3b9 to your computer and use it in GitHub Desktop.
Save nemjit001/43aed115bdf0857864d2dd438b36b3b9 to your computer and use it in GitHub Desktop.
A gitignore suitable for most code projects
# Tijmen Verhoef, Amsterdam
# VSCode
.settings/
.vscode/
.classpath
.project
# JetBrains
.idea/
# C(++)
*.o
*.y
*.out
# C#
obj/
# Python
__pycache__/
venv/
*.pyc
# Gradle
.gradle/
# Django
*.log
*.pot
migrations/
# General
*.env
database.*
db.*
*.db
# build folders
bin/
build/
# OSX specific excludes
.DS_Store
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment