Skip to content

Instantly share code, notes, and snippets.

@jmsaavedra
Last active June 1, 2022 10:09
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save jmsaavedra/20a1a845fe5f3a2b726a to your computer and use it in GitHub Desktop.
Save jmsaavedra/20a1a845fe5f3a2b726a to your computer and use it in GitHub Desktop.
gitignore template
###################################
# general ignore patterns
###################################
build/
obj/
*.o
Debug*/
Release*/
*.mode*
*.app/
*.pyc
.svn/
###################################
# IDE specific
###################################
# XCode
*.pbxuser
*.perspective
*.perspectivev3
*.mode1v3
*.mode2v3
# XCode 4
xcuserdata
*.xcworkspace
# Code::Blocks
*.depend
*.layout
# Visual Studio
*.sdf
*.opensdf
*.suo
ipch/
# Eclipse
.metadata
local.properties
.externalToolBuilders
###################################
# OS Specific
###################################
# Linux
*~
# KDE
.directory
# OSX
**/.DS_Store
.DS_Store
*.swp
*~.nib
# Thumbnails
._*
# Windows
# Windows image file caches
Thumbs.db
# Folder config file
Desktop.ini
# Android
.csettings
/libs/openFrameworksCompiled/project/android/paths.make
###################################
# Misc filetypes
###################################
.mailmap
*.mov
###################################
# EAGLE Cad
###################################
# Backup files
*.s#?
*.b#?
*.l#?
# Eagle project file
# It contains a serial number and references to the file structure
# on your computer.
# comment the following line if you want to have your project file included.
#eagle.epf
# CAM files
*.$$$
*.cmp
*.ly2
*.l15
*.sol
*.plc
*.stc
*.sts
*.crc
*.crs
*.dri
*.drl
*.gpi
*.pls
*.drd
*.drd.*
*.info
*.eps
###################################
# Node.js
###################################
**/node_modules
lib-cov
lcov.info
*.seed
*.log
*.csv
*.dat
*.out
*.pid
*.gz
pids
logs
results
build
.grunt
###################################
# App Specific
###################################
###################################
# official gitignore repo:
# http://github.com/github/gitignore
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment