Last active
December 25, 2015 05:49
-
-
Save rlandas/6927443 to your computer and use it in GitHub Desktop.
GIT ignore file
- taken from GitHub (@see https://help.github.com/articles/ignoring-files)
- added some from multiple sources
- added ZF2 related files and folders
This file contains hidden or 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
# Compiled source # | |
################### | |
*.com | |
*.class | |
*.dll | |
*.exe | |
*.o | |
*.so | |
# Packages # | |
############ | |
# it's better to unpack these files and commit the raw source | |
# git has its own built in compression methods | |
*.7z | |
*.dmg | |
*.gz | |
*.iso | |
*.jar | |
*.rar | |
*.tar | |
*.zip | |
# Logs and databases # | |
###################### | |
*.log | |
*.sql | |
*.sqlite | |
# OS generated files # | |
###################### | |
.DS_Store | |
.DS_Store? | |
._* | |
.Spotlight-V100 | |
.Trashes | |
ehthumbs.db | |
Thumbs.db | |
# composer files # | |
################## | |
.~lock.* | |
composer.lock | |
# ZF2 related files # | |
##################### | |
/data/cache | |
/data/logs | |
/data/session | |
/vendor | |
/module | |
# IDE related files # | |
##################### | |
nbproject | |
*.idea | |
*.project | |
*.settings | |
*.buildpath | |
*.cache | |
.tmproj | |
*.esproj | |
*.sublime-project | |
*.sublime-workspace | |
*.komodoproject | |
.komodotools | |
# grunt Nodejs # | |
################# | |
validation-staus.json | |
node_modules | |
# Folders to ignore # | |
##################### | |
.hg | |
.svn | |
.CVS | |
# Numerous always-ignore extensions # | |
##################################### | |
*.diff | |
*.err | |
*.orig | |
*.log | |
*.rej | |
*.swo | |
*.swp | |
*.zip | |
*.vi | |
*~ | |
*.sass-cache | |
*.ruby-version |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment