2016-10-09 16:47:49 +00:00
|
|
|
# Note:
|
|
|
|
# To effectively apply the changes you will have
|
|
|
|
# to re-index the git index (if there are already
|
|
|
|
# commited files)
|
|
|
|
#
|
|
|
|
# $ git rm -r --cached .
|
|
|
|
# $ git add .
|
|
|
|
# $ git commit -m ".gitignore index rebuild"
|
|
|
|
#
|
|
|
|
|
|
|
|
|
|
|
|
######################################
|
|
|
|
# CUSTOM
|
|
|
|
######################################
|
|
|
|
|
2017-04-22 09:58:17 +00:00
|
|
|
# Keep folders
|
|
|
|
!.keepme
|
|
|
|
|
|
|
|
# Ignore variable dat
|
|
|
|
/.env
|
|
|
|
/log/[a-z0-9-]*
|
|
|
|
/data/
|
2016-10-09 16:47:49 +00:00
|
|
|
|
2016-10-16 10:07:29 +00:00
|
|
|
# Ignore custom MySQL configs
|
2017-04-22 09:58:17 +00:00
|
|
|
/cfg/mysql-5.5/*.cnf
|
|
|
|
/cfg/mysql-5.6/*.cnf
|
|
|
|
/cfg/mysql-5.7/*.cnf
|
|
|
|
/cfg/mysql-8.0/*.cnf
|
|
|
|
/cfg/mariadb-5/*.cnf
|
|
|
|
/cfg/mariadb-10.0/*.cnf
|
|
|
|
/cfg/mariadb-10.1/*.cnf
|
|
|
|
/cfg/mariadb-10.2/*.cnf
|
2016-10-16 10:07:29 +00:00
|
|
|
|
|
|
|
# Ignore custom PHP-FPM configs
|
2017-04-22 09:58:17 +00:00
|
|
|
/cfg/php-fpm-5.4/*.ini
|
|
|
|
/cfg/php-fpm-5.5/*.ini
|
|
|
|
/cfg/php-fpm-5.6/*.ini
|
|
|
|
/cfg/php-fpm-7.0/*.ini
|
|
|
|
/cfg/php-fpm-7.1/*.ini
|
|
|
|
/cfg/hhvm-latest/*.ini
|
2016-10-09 16:47:49 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
######################################
|
|
|
|
# GENERIC
|
|
|
|
######################################
|
|
|
|
|
|
|
|
###### std ######
|
|
|
|
.lock
|
|
|
|
*.log
|
|
|
|
|
|
|
|
###### patches/diffs ######
|
|
|
|
*.patch
|
|
|
|
*.diff
|
|
|
|
*.orig
|
|
|
|
*.rej
|
|
|
|
|
|
|
|
|
|
|
|
######################################
|
|
|
|
# Operating Systems
|
|
|
|
######################################
|
|
|
|
|
|
|
|
###### OSX ######
|
|
|
|
._*
|
|
|
|
.DS*
|
|
|
|
.Spotlight-V100
|
|
|
|
.Trashes
|
|
|
|
|
|
|
|
###### Windows ######
|
|
|
|
Thumbs.db
|
|
|
|
ehthumbs.db
|
|
|
|
Desktop.ini
|
|
|
|
$RECYCLE.BIN/
|
|
|
|
*.lnk
|
|
|
|
*.shortcut
|
|
|
|
|
|
|
|
######################################
|
|
|
|
# Editors
|
|
|
|
######################################
|
|
|
|
|
|
|
|
###### Sublime ######
|
|
|
|
*.sublime-workspace
|
|
|
|
*.sublime-project
|
|
|
|
|
|
|
|
###### Eclipse ######
|
|
|
|
.classpath
|
|
|
|
.buildpath
|
|
|
|
.project
|
|
|
|
.settings/
|
|
|
|
|
|
|
|
###### Netbeans ######
|
|
|
|
/nbproject/
|
|
|
|
|
|
|
|
###### Intellij IDE ######
|
|
|
|
.idea/
|
|
|
|
.idea_modules/
|
|
|
|
|
|
|
|
###### vim ######
|
|
|
|
*.swp
|
|
|
|
*.swo
|
|
|
|
*~
|
|
|
|
|
|
|
|
###### TextMate ######
|
|
|
|
.tm_properties
|
|
|
|
*.tmproj
|
|
|
|
|
|
|
|
###### BBEdit ######
|
|
|
|
*.bbprojectd
|
|
|
|
*.bbproject
|
|
|
|
|