Last active
January 26, 2017 15:54
-
-
Save alex-arriaga/2629ebee25ddb0c3c0d6 to your computer and use it in GitHub Desktop.
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
*~ | |
.DS_Store | |
# Read about how to use .gitignore: https://help.github.com/articles/ignoring-files | |
# Improved by Alex Arriaga (@alex_arriaga_m) - http://www.alex-arriaga.com | |
# Include your project-specific ignores in this section | |
# ----- Project ignores | |
.idea | |
# ----- Operating Systems | |
# OS X | |
# https://github.com/github/gitignore/blob/master/Global/OSX.gitignore | |
.DS_Store | |
.AppleDouble | |
.LSOverride | |
# Icon must ends with two \r. | |
Icon | |
# Thumbnails | |
._* | |
# Files that might appear on external disk | |
.Spotlight-V100 | |
.Trashes | |
# GNU/Linux | |
# https://github.com/github/gitignore/blob/master/Global/Linux.gitignore | |
*~ | |
!.gitignore | |
*~ | |
# KDE directory preferences | |
.directory | |
# Windows | |
# https://github.com/github/gitignore/blob/master/Global/Windows.gitignore | |
# Windows image file caches | |
Thumbs.db | |
ehthumbs.db | |
# Folder config file | |
Desktop.ini | |
# Recycle Bin used on file shares | |
$RECYCLE.BIN/ | |
# Windows Installer files | |
*.cab | |
*.msi | |
*.msm | |
*.msp | |
# ----- Other Control Version Systems | |
# SVN | |
# https://github.com/github/gitignore/blob/master/Global/SVN.gitignore | |
.svn/ | |
# CVS | |
# https://github.com/github/gitignore/blob/master/Global/CVS.gitignore | |
/CVS/* | |
*/CVS/* | |
.cvsignore | |
*/.cvsignore | |
# ----- IDEs and editors | |
# VIM | |
# https://github.com/github/gitignore/blob/master/Global/vim.gitignore | |
[._]*.s[a-w][a-z] | |
[._]s[a-w][a-z] | |
*.un~ | |
Session.vim | |
.netrwhist | |
*~ | |
# Sublime Text | |
# https://github.com/github/gitignore/blob/master/Global/SublimeText.gitignore | |
# workspace files are user-specific | |
*.sublime-workspace | |
# project files should be checked into the repository, unless a significant | |
# proportion of contributors will probably not be using SublimeText | |
# *.sublime-project | |
# Notepad++ | |
# https://github.com/github/gitignore/blob/master/Global/NotepadPP.gitignore | |
# Notepad++ backups # | |
*.bak | |
# Eclipse | |
# https://github.com/github/gitignore/blob/master/Global/Eclipse.gitignore | |
*.pydevproject | |
.metadata | |
.gradle | |
bin/ | |
tmp/ | |
*.tmp | |
*.bak | |
*.swp | |
*~.nib | |
local.properties | |
.settings/ | |
.loadpath | |
# External tool builders | |
.externalToolBuilders/ | |
# Locally stored "Eclipse launch configurations" | |
*.launch | |
# CDT-specific | |
.cproject | |
# PDT-specific | |
.buildpath | |
# sbteclipse plugin | |
.target | |
# TeXlipse plugin | |
.texlipse | |
# Netbeans | |
# https://github.com/github/gitignore/blob/master/Global/NetBeans.gitignore | |
nbproject/private/ | |
build/ | |
nbbuild/ | |
dist/ | |
nbdist/ | |
nbactions.xml | |
nb-configuration.xml | |
# Xcode | |
# https://github.com/github/gitignore/blob/master/Global/Xcode.gitignore | |
build/ | |
*.pbxuser | |
!default.pbxuser | |
*.mode1v3 | |
!default.mode1v3 | |
*.mode2v3 | |
!default.mode2v3 | |
*.perspectivev3 | |
!default.perspectivev3 | |
xcuserdata | |
*.xccheckout | |
profile | |
*.moved-aside | |
DerivedData | |
*.hmap | |
*.ipa |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment