Last active
June 1, 2022 10:09
-
-
Save jmsaavedra/20a1a845fe5f3a2b726a to your computer and use it in GitHub Desktop.
gitignore template
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
################################### | |
# 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