1
0
mirror of https://github.com/github/gitignore synced 2024-11-26 05:34:21 +01:00
This commit is contained in:
Glaived 2014-09-01 17:22:58 +02:00
commit e72ab2ab34
21 changed files with 125 additions and 57 deletions

View File

@ -4,6 +4,10 @@
*.o *.o
*.obj *.obj
# Precompiled Headers
*.gch
*.pch
# Compiled Dynamic libraries # Compiled Dynamic libraries
*.so *.so
*.dylib *.dylib

View File

@ -4,6 +4,10 @@
*.obj *.obj
*.elf *.elf
# Precompiled Headers
*.gch
*.pch
# Libraries # Libraries
*.lib *.lib
*.a *.a

3
CraftCMS.gitignore Normal file
View File

@ -0,0 +1,3 @@
# Craft Storage (cache) [http://buildwithcraft.com/help/craft-storage-gitignore]
/craft/storage/*
!/craft/storage/logo/*

View File

@ -1,6 +1,7 @@
# Dont commit the following directories created by pub. # Dont commit the following directories created by pub.
build/ build/
packages/ packages/
.buildlog
# Or the files created by dart2js. # Or the files created by dart2js.
*.dart.js *.dart.js

View File

@ -4,3 +4,7 @@ deps
*.beam *.beam
*.plt *.plt
erl_crash.dump erl_crash.dump
ebin
rel/example_project
.concrete/DEV_MODE
.rebar

View File

@ -1,29 +1,44 @@
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm
## Directory-based project format /*.iml
## Directory-based project format:
.idea/ .idea/
# if you remove the above rule, at least ignore user-specific stuff: # if you remove the above rule, at least ignore the follwing:
# User-specific stuff:
# .idea/workspace.xml # .idea/workspace.xml
# .idea/tasks.xml # .idea/tasks.xml
# and these sensitive or high-churn files: # .idea/dictionaries
# Sensitive or high-churn files:
# .idea/dataSources.ids # .idea/dataSources.ids
# .idea/dataSources.xml # .idea/dataSources.xml
# .idea/sqlDataSources.xml # .idea/sqlDataSources.xml
# .idea/dynamic.xml # .idea/dynamic.xml
# .idea/uiDesigner.xml
## File-based project format # Gradle:
# .idea/gradle.xml
# .idea/libraries
# Mongo Explorer plugin:
# .idea/mongoSettings.xml
## File-based project format:
*.ipr *.ipr
*.iml
*.iws *.iws
## Additional for IntelliJ ## Plugin-specific files:
# IntelliJ
out/ out/
# generated by mpeltonen/sbt-idea plugin # mpeltonen/sbt-idea plugin
.idea_modules/ .idea_modules/
# generated by JIRA plugin # JIRA plugin
atlassian-ide-plugin.xml atlassian-ide-plugin.xml
# generated by Crashlytics plugin (for Android Studio and Intellij) # Crashlytics plugin (for Android Studio and IntelliJ)
com_crashlytics_export_strings.xml com_crashlytics_export_strings.xml

4
Global/LyX.gitignore Normal file
View File

@ -0,0 +1,4 @@
# Ignore LyX backup and autosave files
# http://www.lyx.org/
*.lyx~
*.lyx#

View File

@ -0,0 +1,4 @@
# Built files
x86/
arm/
arm-p/

View File

@ -13,3 +13,6 @@ $RECYCLE.BIN/
*.msi *.msi
*.msm *.msm
*.msp *.msp
# Windows shortcuts
*.lnk

View File

@ -4,6 +4,7 @@ app/code/community/Cm/
app/code/core/ app/code/core/
app/design/adminhtml/default/default/ app/design/adminhtml/default/default/
app/design/frontend/base/ app/design/frontend/base/
app/design/frontend/rwd/
app/design/frontend/default/blank/ app/design/frontend/default/blank/
app/design/frontend/default/default/ app/design/frontend/default/default/
app/design/frontend/default/iphone/ app/design/frontend/default/iphone/
@ -106,6 +107,7 @@ shell/log.php
skin/adminhtml/default/default/ skin/adminhtml/default/default/
skin/adminhtml/default/enterprise skin/adminhtml/default/enterprise
skin/frontend/base/ skin/frontend/base/
skin/frontend/rwd/
skin/frontend/default/blank/ skin/frontend/default/blank/
skin/frontend/default/blue/ skin/frontend/default/blue/
skin/frontend/default/default/ skin/frontend/default/default/

View File

@ -21,7 +21,7 @@ build/Release
# Dependency directory # Dependency directory
# Commenting this out is preferred by some people, see # Commenting this out is preferred by some people, see
# https://npmjs.org/doc/faq.html#Should-I-check-my-node_modules-folder-into-git # https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git-
node_modules node_modules
# Users Environment Variables # Users Environment Variables

View File

@ -11,6 +11,7 @@ env/
build/ build/
develop-eggs/ develop-eggs/
dist/ dist/
downloads/
eggs/ eggs/
lib/ lib/
lib64/ lib64/

View File

@ -6,3 +6,6 @@
# R data files from past sessions # R data files from past sessions
.Rdata .Rdata
# RStudio files
*.Rproj

View File

@ -24,3 +24,8 @@ config/secrets.yml
# unless supporting rvm < 1.11.0 or doing something fancy, ignore this: # unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
.rvmrc .rvmrc
# if using bower-rails ignore default bower_components path bower.json files
/vendor/assets/bower_components
*.bowerrc
bower.json

View File

@ -1,15 +1,34 @@
cache/* # Cache and logs (Symfony2)
log/* /app/cache/*
web/uploads/* /app/logs/*
config/databases.yml !app/cache/.gitkeep
config/propel.ini !app/logs/.gitkeep
data/sql/*
lib/filter/doctrine/base/Base* # Cache and logs (Symfony3)
lib/filter/doctrine/*Plugin/base/Base* /var/cache/*
lib/form/doctrine/base/Base* /var/logs/*
lib/form/doctrine/*Plugin/base/Base* !var/cache/.gitkeep
lib/model/doctrine/base/Base* !var/logs/.gitkeep
lib/model/doctrine/*Plugin/base/Base*
lib/model/om/* # Parameters
lib/model/map/* /app/config/parameters.yml
web/*Plugin/* /app/config/parameters.ini
# Managed by Composer
/app/bootstrap.php.cache
/var/bootstrap.php.cache
/bin/*
!bin/console
!bin/symfony_requirements
/vendor/
# Assets and user uploads
/web/bundles/
/web/uploads/
# PHPUnit
/app/phpunit.xml
/phpunit.xml
# Composer PHAR
/composer.phar

View File

@ -1,24 +0,0 @@
# Cache and logs
/app/cache/*
/app/logs/*
!app/cache/.gitkeep
!app/logs/.gitkeep
# Parameters
/app/config/parameters.yml
/app/config/parameters.ini
# Managed by Composer
/app/bootstrap.php.cache
/bin/
/vendor/
# Assets and user uploads
/web/bundles/
/web/uploads/
# PHPUnit
/app/phpunit.xml
# Composer PHAR
/composer.phar

View File

@ -9,6 +9,7 @@
## Intermediate documents: ## Intermediate documents:
*.dvi *.dvi
*-converted-to.*
# these rules might exclude image files for figures etc. # these rules might exclude image files for figures etc.
# *.ps # *.ps
# *.eps # *.eps
@ -20,6 +21,7 @@
*.blg *.blg
*-blx.aux *-blx.aux
*-blx.bib *-blx.bib
*.brf
*.run.xml *.run.xml
## Build tool auxiliary files: ## Build tool auxiliary files:
@ -50,6 +52,12 @@
*.[1-9]R *.[1-9]R
*.[1-9][0-9]R *.[1-9][0-9]R
*.[1-9][0-9][0-9]R *.[1-9][0-9][0-9]R
*.eledsec[1-9]
*.eledsec[1-9]R
*.eledsec[1-9][0-9]
*.eledsec[1-9][0-9]R
*.eledsec[1-9][0-9][0-9]
*.eledsec[1-9][0-9][0-9]R
# glossaries # glossaries
*.acn *.acn

View File

@ -1,6 +1,7 @@
[Ll]ibrary/ [Ll]ibrary/
[Tt]emp/ [Tt]emp/
[Oo]bj/ [Oo]bj/
[Bb]uild/
# Autogenerated VS/MD solution and project files # Autogenerated VS/MD solution and project files
/*.csproj /*.csproj

View File

@ -128,6 +128,7 @@ publish/
# TODO: Comment the next line if you want to checkin your web deploy settings # TODO: Comment the next line if you want to checkin your web deploy settings
# but database connection strings (with potential passwords) will be unencrypted # but database connection strings (with potential passwords) will be unencrypted
*.pubxml *.pubxml
*.publishproj
# NuGet Packages # NuGet Packages
*.nupkg *.nupkg

10
Xojo.gitignore Normal file
View File

@ -0,0 +1,10 @@
# Xojo (formerly REALbasic and Real Studio)
Builds*
*.debug
*.debug.app
Debug*.exe
Debug*/Debug*.exe
Debug*/Debug*\ Libs
*.rbuistate
*.obsolete

View File

@ -3,18 +3,18 @@ composer.phar
vendor/ vendor/
# Local configs # Local configs
config/autoload/*local.php config/autoload/*.local.php
# Binary gettext files # Binary gettext files
*.po *.mo
# Data # Data
log/ data/logs/
logs/ data/cache/
cache/ data/sessions/
data/tmp/
temp/ temp/
tmp/
# ZF1 # Legacy ZF1
demos/ demos/
extras/documentation extras/documentation