Skip to content

Instantly share code, notes, and snippets.

@damoclark
Forked from octocat/.gitignore
Last active July 27, 2018 04:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save damoclark/c0be20da9a19cbcf39e0 to your computer and use it in GitHub Desktop.
Save damoclark/c0be20da9a19cbcf39e0 to your computer and use it in GitHub Desktop.
My global git ignore file, added with command git config --global core.excludesfile <path to this file>
#global git ignore file, add with command git config --global core.excludesfile <path to this file>
# Testing scripts #
###################
test-*.php
# Typescripts #
###################
typescript*
# 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
# Editors and IDEs #
####################
*.komodoproject
*.komodotools
.idea/
# Logs and databases #
######################
*.log
*.sqlite
# Generic config files #
########################
*.ini
*.conf
# OS generated files #
######################
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db
# 3rd party loaded libraries #
##############################
vendor/
node_modules/
# Smarty compiled templates
##############################
smarty/templates_c/*
templates/
# phpunit cache file
.phpunit.result.cache
# Project Specific
!tests/etc/*.ini
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment