Merge remote-tracking branch 'upstream/master' into patch-1

This commit is contained in:
Michiel Sikma 2016-01-21 10:36:01 +01:00
commit 29bd7031a7
83 changed files with 798 additions and 125 deletions

View File

@ -24,3 +24,9 @@ proguard/
# Log Files # Log Files
*.log *.log
# Android Studio Navigation editor temp files
.navigation/
# Android Studio captures folder
captures/

2
AppEngine.gitignore Normal file
View File

@ -0,0 +1,2 @@
# Google App Engine generated folder
appengine-generated/

View File

@ -1,14 +1,13 @@
*.tar *.tar
*.tar.* *.tar.*
*.jar
*.exe
*.msi
*.zip *.zip
*.tgz *.tgz
*.log *.log
*.log.* *.log.*
*.sig *.sig
# AUR metadata
.AURINFO
.SRCINFO
pkg/ pkg/
src/ src/

View File

@ -5,9 +5,13 @@ Makefile.in
# http://www.gnu.org/software/autoconf # http://www.gnu.org/software/autoconf
/autom4te.cache /autom4te.cache
/autoscan.log
/autoscan-*.log
/aclocal.m4 /aclocal.m4
/compile /compile
/config.h.in
/configure /configure
/configure.scan
/depcomp /depcomp
/install-sh /install-sh
/missing /missing

View File

@ -27,3 +27,6 @@
*.i*86 *.i*86
*.x86_64 *.x86_64
*.hex *.hex
# Debug files
*.dSYM/

View File

@ -1,5 +1,6 @@
CMakeCache.txt CMakeCache.txt
CMakeFiles CMakeFiles
CMakeScripts
Makefile Makefile
cmake_install.cmake cmake_install.cmake
install_manifest.txt install_manifest.txt

6
CUDA.gitignore Normal file
View File

@ -0,0 +1,6 @@
*.i
*.ii
*.gpu
*.ptx
*.cubin
*.fatbin

View File

@ -1,7 +1,13 @@
tmp/* # CakePHP 3
[Cc]onfig/core.php
[Cc]onfig/database.php /vendor/*
app/tmp/* /config/app.php
app/[Cc]onfig/core.php /tmp/*
app/[Cc]onfig/database.php /logs/*
!empty
# CakePHP 2
/app/tmp/*
/app/Config/core.php
/app/Config/database.php
/vendors/*

View File

@ -1,6 +1,6 @@
*/config/development */config/development
*/logs/log-*.php */logs/log-*.php
*/logs/!index.html !*/logs/index.html
*/cache/* */cache/*
*/cache/!index.html !*/cache/index.html
*/cache/!.htaccess !*/cache/.htaccess

View File

@ -1,5 +1,5 @@
composer.phar composer.phar
vendor/ /vendor/
# Commit your application's lock file http://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file # Commit your application's lock file http://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file
# You may choose to ignore a library lock file http://getcomposer.org/doc/02-libraries.md#lock-file # You may choose to ignore a library lock file http://getcomposer.org/doc/02-libraries.md#lock-file

20
D.gitignore Normal file
View File

@ -0,0 +1,20 @@
# Compiled Object files
*.o
*.obj
# Compiled Dynamic libraries
*.so
*.dylib
*.dll
# Compiled Static libraries
*.a
*.lib
# Executables
*.exe
# DUB
.dub
docs.json
__dummy.html

View File

@ -1,14 +1,27 @@
# Dont commit the following directories created by pub. # See https://www.dartlang.org/tools/private-files.html
# Files and directories created by pub
.buildlog .buildlog
.packages
.project
.pub/ .pub/
build/ build/
packages **/packages/
# Or the files created by dart2js. # Files created by dart2js
# (Most Dart developers will use pub build to compile Dart, use/modify these
# rules if you intend to use dart2js directly
# Convention is to use extension '.dart.js' for Dart compiled to Javascript to
# differentiate from explicit Javascript files)
*.dart.js *.dart.js
*.js_ *.part.js
*.js.deps *.js.deps
*.js.map *.js.map
*.info.json
# Include when developing application packages. # Directory created by dartdoc
doc/api/
# Don't commit pubspec lock file
# (Library packages only! Remove pattern if developing an application package)
pubspec.lock pubspec.lock

View File

@ -20,6 +20,10 @@
# Deployment Manager configuration file for your project. Added in Delphi XE2. # Deployment Manager configuration file for your project. Added in Delphi XE2.
# Uncomment this if it is not mobile development and you do not use remote debug feature. # Uncomment this if it is not mobile development and you do not use remote debug feature.
#*.deployproj #*.deployproj
#
# C++ object files produced when C/C++ Output file generation is configured.
# Uncomment this if you are not using external objects (zlib library for example).
#*.obj
# #
# Delphi compiler-generated binaries (safe to delete) # Delphi compiler-generated binaries (safe to delete)
@ -37,9 +41,13 @@
*.tds *.tds
*.dcu *.dcu
*.lib *.lib
*.a
*.o
*.ocx
# Delphi autogenerated files (duplicated info) # Delphi autogenerated files (duplicated info)
*.cfg *.cfg
*.hpp
*Resource.rc *Resource.rc
# Delphi local files (user-specific info) # Delphi local files (user-specific info)
@ -52,3 +60,6 @@
# Delphi history and backups # Delphi history and backups
__history/ __history/
*.~* *.~*
# Castalia statistics file (since XE7 Castalia is distributed with Delphi)
*.stat

View File

@ -1,4 +1,5 @@
/_build /_build
/cover
/deps /deps
erl_crash.dump erl_crash.dump
*.ez *.ez

5
Elm.gitignore Normal file
View File

@ -0,0 +1,5 @@
# elm-package generated files
elm-package.json
elm-stuff/
# elm-repl generated files
repl-temp-*

View File

@ -1,4 +1,4 @@
.architect .architect
boostrap.json bootstrap.json
build/ build/
ext/ ext/

View File

@ -4,7 +4,7 @@
## 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://docs.npmjs.com/misc/faq#should-i-check-my-node_modules-folder-into-git
node_modules node_modules
# Book build output # Book build output

View File

@ -1,6 +1,5 @@
*.pydevproject
.metadata .metadata
.gradle
bin/ bin/
tmp/ tmp/
*.tmp *.tmp
@ -11,16 +10,28 @@ local.properties
.settings/ .settings/
.loadpath .loadpath
# Eclipse Core
.project
# External tool builders # External tool builders
.externalToolBuilders/ .externalToolBuilders/
# Locally stored "Eclipse launch configurations" # Locally stored "Eclipse launch configurations"
*.launch *.launch
# CDT-specific # PyDev specific (Python IDE for Eclipse)
*.pydevproject
# CDT-specific (C/C++ Development Tooling)
.cproject .cproject
# PDT-specific # JDT-specific (Eclipse Java Development Tools)
.classpath
# Java annotation processor (APT)
.factorypath
# PDT-specific (PHP Development Tools)
.buildpath .buildpath
# sbteclipse plugin # sbteclipse plugin
@ -28,3 +39,6 @@ local.properties
# TeXlipse plugin # TeXlipse plugin
.texlipse .texlipse
# STS (Spring Tool Suite)
.springBeans

View File

@ -1,2 +1,2 @@
# The compilation directoy # The compilation directory
EIFGENs EIFGENs

View File

@ -1,3 +1,4 @@
# Ensime specific # Ensime specific
.ensime .ensime
.ensime_cache/
.ensime_lucene/ .ensime_lucene/

2
Global/GPG.gitignore Normal file
View File

@ -0,0 +1,2 @@
secring.*

View File

@ -1,4 +1,13 @@
# default application storage directory used by the IDE Performance Cache feature
.data/ .data/
# used for ADF styles caching
temp/ temp/
# default output directories
classes/ classes/
deploy/
javadoc/
# lock file, a part of Oracle Credential Store Framework
cwallet.sso.lck cwallet.sso.lck

View File

@ -1,4 +1,4 @@
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
*.iml *.iml
@ -10,6 +10,7 @@
# .idea/workspace.xml # .idea/workspace.xml
# .idea/tasks.xml # .idea/tasks.xml
# .idea/dictionaries # .idea/dictionaries
# .idea/shelf
# Sensitive or high-churn files: # Sensitive or high-churn files:
# .idea/dataSources.ids # .idea/dataSources.ids
@ -32,7 +33,7 @@
## Plugin-specific files: ## Plugin-specific files:
# IntelliJ # IntelliJ
out/ /out/
# mpeltonen/sbt-idea plugin # mpeltonen/sbt-idea plugin
.idea_modules/ .idea_modules/
@ -44,3 +45,4 @@ atlassian-ide-plugin.xml
com_crashlytics_export_strings.xml com_crashlytics_export_strings.xml
crashlytics.properties crashlytics.properties
crashlytics-build.properties crashlytics-build.properties
fabric.properties

View File

@ -1,15 +1,30 @@
#ignore backup files # Lazarus compiler-generated binaries (safe to delete)
backup/ *.exe
*.dll
#ignore files generated by the compiler *.so
lib/ *.dylib
*.lrs
*.res
*.compiled *.compiled
*.dbg
*.ppu
*.o *.o
*.or *.or
*.ppu *.a
#ignore debug information files # Lazarus autogenerated files (duplicated info)
*.dbg *.rst
*.rsj
*.lrt
#exclude executable output in windows # Lazarus local files (user-specific info)
*.exe *.lps
# Lazarus backups and unit output folders.
# These can be changed by user in Lazarus/project options.
backup/
*.bak
lib/
# Application bundle for Mac OS
*.app/

View File

@ -1,4 +1,10 @@
*~ *~
# temporary files which can be created if a process still has a handle open of a deleted file
.fuse_hidden*
# KDE directory preferences # KDE directory preferences
.directory .directory
# Linux trash folder which might appear on any partition or disk
.Trash-*

View File

@ -1,3 +1,6 @@
/.hg/* .hg/
*/.hg/*
.hgignore .hgignore
.hgsigs
.hgsub
.hgsubstate
.hgtags

View File

@ -8,3 +8,6 @@
# Excel Backup File # Excel Backup File
*.xlk *.xlk
# PowerPoint temporary
~$*.ppt*

View File

@ -4,4 +4,4 @@ nbbuild/
dist/ dist/
nbdist/ nbdist/
nbactions.xml nbactions.xml
nb-configuration.xml .nb-gradle/

View File

@ -8,9 +8,13 @@ Icon
# Thumbnails # Thumbnails
._* ._*
# Files that might appear on external disk # Files that might appear in the root of a volume
.DocumentRevisions-V100
.fseventsd
.Spotlight-V100 .Spotlight-V100
.TemporaryItems
.Trashes .Trashes
.VolumeIcon.icns
# Directories potentially created on remote AFP share # Directories potentially created on remote AFP share
.AppleDB .AppleDB

1
Global/Otto.gitignore Normal file
View File

@ -0,0 +1 @@
.otto/

View File

@ -4,7 +4,7 @@ This directory contains globally useful gitignores,
e.g. OS-specific and editor specific. e.g. OS-specific and editor specific.
For more on global gitignores: For more on global gitignores:
<http://help.github.com/git-ignore/> <https://help.github.com/articles/ignoring-files/#create-a-global-gitignore>
And a good blog post about 'em: And a good blog post about 'em:
<http://augustl.com/blog/2009/global_gitignores> <http://augustl.com/blog/2009/global_gitignores>

3
Global/Redis.gitignore Normal file
View File

@ -0,0 +1,3 @@
# Ignore redis binary dump (dump.rdb) files
*.rdb

View File

@ -0,0 +1,36 @@
# Waveform formats
*.vcd
*.vpd
*.evcd
*.fsdb
# Default name of the simulation executable. A different name can be
# specified with this switch (the associated daidir database name is
# also taken from here): -o <path>/<filename>
simv
# Generated for Verilog and VHDL top configs
simv.daidir/
simv.db.dir/
# Infrastructure necessary to co-simulate SystemC models with
# Verilog/VHDL models. An alternate directory may be specified with this
# switch: -Mdir=<directory_path>
csrc/
# Log file - the following switch allows to specify the file that will be
# used to write all messages from simulation: -l <filename>
*.log
# Coverage results (generated with urg) and database location. The
# following switch can also be used: urg -dir <coverage_directory>.vdb
simv.vdb/
urgReport/
# DVE and UCLI related files.
DVEfiles/
ucli.key
# When the design is elaborated for DirectC, the following file is created
# with declarations for C/C++ functions.
vc_hdrs.h

View File

@ -1,7 +1,9 @@
# Ignore tags created by etags, ctags, gtags (GNU global) and cscope # Ignore tags created by etags, ctags, gtags (GNU global) and cscope
TAGS TAGS
.TAGS
!TAGS/ !TAGS/
tags tags
.tags
!tags/ !tags/
gtags.files gtags.files
GTAGS GTAGS

View File

@ -4,6 +4,9 @@
[Bb]in [Bb]in
[Ii]nclude [Ii]nclude
[Ll]ib [Ll]ib
[Ll]ib64
[Ll]ocal
[Ss]cripts [Ss]cripts
pyvenv.cfg pyvenv.cfg
.venv .venv
pip-selfcheck.json

View File

@ -0,0 +1,2 @@
.vscode

View File

@ -1,4 +1,12 @@
# Xcode
#
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
## Build generated
build/ build/
DerivedData
## Various settings
*.pbxuser *.pbxuser
!default.pbxuser !default.pbxuser
*.mode1v3 *.mode1v3
@ -8,7 +16,8 @@ build/
*.perspectivev3 *.perspectivev3
!default.perspectivev3 !default.perspectivev3
xcuserdata xcuserdata
## Other
*.xccheckout *.xccheckout
*.moved-aside *.moved-aside
DerivedData
*.xcuserstate *.xcuserstate

View File

@ -42,6 +42,16 @@
*_usage.xml *_usage.xml
*_xst.xrpt *_xst.xrpt
# iMPACT generated files
_impactbatch.log
impact.xsl
impact_impact.xwbt
ise_impact.cmd
webtalk_impact.xml
# Core Generator generated files
xaw2verilog.log
# project-wide generated files # project-wide generated files
*.gise *.gise
par_usage_statistics.html par_usage_statistics.html

View File

@ -3,3 +3,9 @@ build/
# Ignore Gradle GUI config # Ignore Gradle GUI config
gradle-app.setting gradle-app.setting
# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
!gradle-wrapper.jar
# Cache of project
.gradletasknamecache

View File

@ -6,12 +6,11 @@ cabal-dev
*.chs.h *.chs.h
*.dyn_o *.dyn_o
*.dyn_hi *.dyn_hi
.virtualenv
.hpc .hpc
.hsenv .hsenv
.cabal-sandbox/ .cabal-sandbox/
cabal.sandbox.config cabal.sandbox.config
cabal.config
*.prof *.prof
*.aux *.aux
*.hp *.hp
.stack-work/

5
IGORPro.gitignore Normal file
View File

@ -0,0 +1,5 @@
# Avoid including Experiment files: they can be created and edited locally to test the ipf files
*.pxp
*.pxt
*.uxp
*.uxt

View File

@ -1,2 +1,3 @@
_site/ _site/
.sass-cache/ .sass-cache/
.jekyll-metadata

View File

@ -2,8 +2,13 @@
/.htaccess /.htaccess
/administrator/cache/* /administrator/cache/*
/administrator/components/com_admin/* /administrator/components/com_admin/*
/administrator/components/com_ajax/*
/administrator/components/com_tags/*
/administrator/components/com_banners/* /administrator/components/com_banners/*
/administrator/components/com_cache/* /administrator/components/com_cache/*
/administrator/components/com_postinstall/*
/administrator/components/com_joomlaupdate/*
/administrator/components/com_contenthistory/*
/administrator/components/com_categories/* /administrator/components/com_categories/*
/administrator/components/com_checkin/* /administrator/components/com_checkin/*
/administrator/components/com_config/* /administrator/components/com_config/*
@ -28,7 +33,52 @@
/administrator/components/index.html /administrator/components/index.html
/administrator/help/* /administrator/help/*
/administrator/includes/* /administrator/includes/*
/administrator/language/en-GB/ /administrator/language/en-GB/en-GB.com_ajax.ini
/administrator/language/en-GB/en-GB.com_ajax.sys.ini
/administrator/language/en-GB/en-GB.com_contenthistory.ini
/administrator/language/en-GB/en-GB.com_contenthistory.sys.ini
/administrator/language/en-GB/en-GB.com_joomlaupdate.ini
/administrator/language/en-GB/en-GB.com_joomlaupdate.sys.ini
/administrator/language/en-GB/en-GB.com_postinstall.ini
/administrator/language/en-GB/en-GB.com_postinstall.sys.ini
/administrator/language/en-GB/en-GB.com_sitemapjen.sys.ini
/administrator/language/en-GB/en-GB.com_tags.ini
/administrator/language/en-GB/en-GB.com_tags.sys.ini
/administrator/language/en-GB/en-GB.mod_stats_admin.ini
/administrator/language/en-GB/en-GB.mod_stats_admin.sys.ini
/administrator/language/en-GB/en-GB.plg_authentication_cookie.ini
/administrator/language/en-GB/en-GB.plg_authentication_cookie.sys.ini
/administrator/language/en-GB/en-GB.plg_content_contact.ini
/administrator/language/en-GB/en-GB.plg_content_contact.sys.ini
/administrator/language/en-GB/en-GB.plg_content_finder.ini
/administrator/language/en-GB/en-GB.plg_content_finder.sys.ini
/administrator/language/en-GB/en-GB.plg_finder_categories.ini
/administrator/language/en-GB/en-GB.plg_finder_categories.sys.ini
/administrator/language/en-GB/en-GB.plg_finder_contacts.ini
/administrator/language/en-GB/en-GB.plg_finder_contacts.sys.ini
/administrator/language/en-GB/en-GB.plg_finder_content.ini
/administrator/language/en-GB/en-GB.plg_finder_content.sys.ini
/administrator/language/en-GB/en-GB.plg_finder_newsfeeds.sys.ini
/administrator/language/en-GB/en-GB.plg_finder_newsfeeds.ini
/administrator/language/en-GB/en-GB.plg_finder_tags.ini
/administrator/language/en-GB/en-GB.plg_finder_tags.sys.ini
/administrator/language/en-GB/en-GB.plg_finder_weblinks.ini
/administrator/language/en-GB/en-GB.plg_finder_weblinks.sys.ini
/administrator/language/en-GB/en-GB.plg_installer_webinstaller.ini
/administrator/language/en-GB/en-GB.plg_installer_webinstaller.sys.ini
/administrator/language/en-GB/en-GB.plg_quickicon_joomlaupdate.ini
/administrator/language/en-GB/en-GB.plg_quickicon_joomlaupdate.sys.ini
/administrator/language/en-GB/en-GB.plg_search_tags.ini
/administrator/language/en-GB/en-GB.plg_search_tags.sys.ini
/administrator/language/en-GB/en-GB.plg_system_languagecode.ini
/administrator/language/en-GB/en-GB.plg_system_languagecode.sys.ini
/administrator/language/en-GB/en-GB.plg_twofactorauth_totp.ini
/administrator/language/en-GB/en-GB.plg_twofactorauth_totp.sys.ini
/administrator/language/en-GB/en-GB.plg_twofactorauth_yubikey.ini
/administrator/language/en-GB/en-GB.plg_twofactorauth_yubikey.sys.ini
/administrator/language/en-GB/en-GB.tpl_isis.ini
/administrator/language/en-GB/en-GB.tpl_isis.sys.ini
/administrator/language/en-GB/install.xml
/administrator/language/en-GB/en-GB.com_admin.ini /administrator/language/en-GB/en-GB.com_admin.ini
/administrator/language/en-GB/en-GB.com_admin.sys.ini /administrator/language/en-GB/en-GB.com_admin.sys.ini
/administrator/language/en-GB/en-GB.com_banners.ini /administrator/language/en-GB/en-GB.com_banners.ini
@ -218,15 +268,22 @@
/administrator/modules/mod_toolbar/* /administrator/modules/mod_toolbar/*
/administrator/modules/mod_unread/* /administrator/modules/mod_unread/*
/administrator/modules/mod_version/* /administrator/modules/mod_version/*
/administrator/modules/mod_stats_admin/*
/administrator/modules/index.html /administrator/modules/index.html
/administrator/templates/bluestork/* /administrator/templates/bluestork/*
/administrator/templates/isis/*
/administrator/templates/hathor/* /administrator/templates/hathor/*
/administrator/templates/system/* /administrator/templates/system/*
/administrator/templates/index.html /administrator/templates/index.html
/administrator/index.php /administrator/index.php
/cache/* /cache/*
/bin/*
/cli/* /cli/*
/components/com_banners/* /components/com_banners/*
/components/com_ajax/*
/components/com_config/*
/components/com_contenthistory/*
/components/com_tags/*
/components/com_contact/* /components/com_contact/*
/components/com_content/* /components/com_content/*
/components/com_finder/* /components/com_finder/*
@ -239,18 +296,42 @@
/components/com_wrapper/* /components/com_wrapper/*
/components/index.html /components/index.html
/images/banners/* /images/banners/*
/images/headers/*
/images/sampledata/* /images/sampledata/*
/images/joomla* /images/joomla*
/images/index.html /images/index.html
/images/powered_by.png /images/powered_by.png
/includes/* /includes/*
/installation/* /installation/*
/language/en-GB/en-GB.com_ajax.ini
/language/en-GB/en-GB.com_config.ini
/language/en-GB/en-GB.com_contact.ini /language/en-GB/en-GB.com_contact.ini
/language/en-GB/en-GB.com_finder.ini
/language/en-GB/en-GB.com_tags.ini
/language/en-GB/en-GB.finder_cli.ini
/language/en-GB/en-GB.lib_fof.sys.ini
/language/en-GB/en-GB.lib_fof.ini
/language/en-GB/en-GB.com_content.ini /language/en-GB/en-GB.com_content.ini
/language/en-GB/en-GB.lib_idna_convert.sys.ini
/language/en-GB/en-GB.com_mailto.ini /language/en-GB/en-GB.com_mailto.ini
/language/en-GB/en-GB.lib_joomla.sys.ini
/language/en-GB/en-GB.lib_phpass.sys.ini
/language/en-GB/en-GB.lib_phpmailer.sys.ini
/language/en-GB/en-GB.lib_phputf8.sys.ini
/language/en-GB/en-GB.lib_simplepie.sys.ini
/language/en-GB/en-GB.com_media.ini /language/en-GB/en-GB.com_media.ini
/language/en-GB/en-GB.mod_finder.ini
/language/en-GB/en-GB.com_messages.ini /language/en-GB/en-GB.com_messages.ini
/language/en-GB/en-GB.mod_tags_popular.ini
/language/en-GB/en-GB.mod_tags_popular.sys.ini
/language/en-GB/en-GB.mod_tags_similar.ini
/language/en-GB/en-GB.mod_tags_similar.sys.ini
/language/en-GB/en-GB.mod_finder.sys.ini
/language/en-GB/en-GB.tpl_beez3.ini
/language/en-GB/en-GB.tpl_beez3.sys.ini
/language/en-GB/en-GB.com_newsfeeds.ini /language/en-GB/en-GB.com_newsfeeds.ini
/language/en-GB/en-GB.tpl_protostar.ini
/language/en-GB/en-GB.tpl_protostar.sys.ini
/language/en-GB/en-GB.com_search.ini /language/en-GB/en-GB.com_search.ini
/language/en-GB/en-GB.com_users.ini /language/en-GB/en-GB.com_users.ini
/language/en-GB/en-GB.com_weblinks.ini /language/en-GB/en-GB.com_weblinks.ini
@ -316,21 +397,36 @@
/language/en-GB/install.xml /language/en-GB/install.xml
/language/overrides/* /language/overrides/*
/language/index.html /language/index.html
/layouts/joomla/*
/layouts/libraries/*
/layouts/plugins/*
/layouts/index.html
/libraries/cms.php /libraries/cms.php
/libraries/cms/* /libraries/cms/*
/libraries/fof/*
/libraries/idna_convert/*
/libraries/joomla/* /libraries/joomla/*
/libraries/legacy/*
/libraries/phpass/*
/libraries/phpmailer/* /libraries/phpmailer/*
/libraries/phputf8/* /libraries/phputf8/*
/libraries/simplepie/* /libraries/simplepie/*
/libraries/vendor/*
/libraries/classmap.php
/libraries/import.legacy.php
/libraries/index.html /libraries/index.html
/libraries/import.php /libraries/import.php
/libraries/loader.php /libraries/loader.php
/libraries/platform.php /libraries/platform.php
/logs/* /logs/*
/media/cms/* /media/cms/*
/media/com_contenthistory/*
/media/com_finder/* /media/com_finder/*
/media/com_joomlaupdate/*
/media/com_wrapper/*
/media/contacts/* /media/contacts/*
/media/editors/* /media/editors/*
/media/jui/*
/media/mailto/* /media/mailto/*
/media/media/* /media/media/*
/media/mod_languages/* /media/mod_languages/*
@ -360,6 +456,8 @@
/modules/mod_search/* /modules/mod_search/*
/modules/mod_stats/* /modules/mod_stats/*
/modules/mod_syndicate/* /modules/mod_syndicate/*
/modules/mod_tags_popular/*
/modules/mod_tags_similar/*
/modules/mod_users_latest/* /modules/mod_users_latest/*
/modules/mod_weblinks/* /modules/mod_weblinks/*
/modules/mod_whosonline/* /modules/mod_whosonline/*
@ -369,8 +467,10 @@
/plugins/authentication/gmail/* /plugins/authentication/gmail/*
/plugins/authentication/joomla/* /plugins/authentication/joomla/*
/plugins/authentication/ldap/* /plugins/authentication/ldap/*
/plugins/authentication/cookie/*
/plugins/authentication/index.html /plugins/authentication/index.html
/plugins/captcha/recaptcha/* /plugins/captcha/recaptcha/*
/plugins/captcha/index.html
/plugins/content/emailcloak/* /plugins/content/emailcloak/*
/plugins/content/example/* /plugins/content/example/*
/plugins/content/finder/* /plugins/content/finder/*
@ -380,6 +480,7 @@
/plugins/content/pagebreak/* /plugins/content/pagebreak/*
/plugins/content/pagenavigation/* /plugins/content/pagenavigation/*
/plugins/content/vote/* /plugins/content/vote/*
/plugins/content/contact/*
/plugins/content/index.html /plugins/content/index.html
/plugins/editors/codemirror/* /plugins/editors/codemirror/*
/plugins/editors/none/* /plugins/editors/none/*
@ -398,14 +499,18 @@
/plugins/finder/contacts/* /plugins/finder/contacts/*
/plugins/finder/content/* /plugins/finder/content/*
/plugins/finder/newsfeeds/* /plugins/finder/newsfeeds/*
/plugins/finder/tags/*
/plugins/finder/weblinks/* /plugins/finder/weblinks/*
/plugins/installer/*
/plugins/quickicon/extensionupdate/* /plugins/quickicon/extensionupdate/*
/plugins/quickicon/joomlaupdate/* /plugins/quickicon/joomlaupdate/*
/plugins/quickicon/index.html
/plugins/search/categories/* /plugins/search/categories/*
/plugins/search/contacts/* /plugins/search/contacts/*
/plugins/search/content/* /plugins/search/content/*
/plugins/search/newsfeeds/* /plugins/search/newsfeeds/*
/plugins/search/weblinks/* /plugins/search/weblinks/*
/plugins/search/tags/*
/plugins/search/index.html /plugins/search/index.html
/plugins/system/cache/* /plugins/system/cache/*
/plugins/system/debug/* /plugins/system/debug/*
@ -419,6 +524,7 @@
/plugins/system/remember/* /plugins/system/remember/*
/plugins/system/sef/* /plugins/system/sef/*
/plugins/system/index.html /plugins/system/index.html
/plugins/twofactorauth/*
/plugins/user/contactcreator/* /plugins/user/contactcreator/*
/plugins/user/example/* /plugins/user/example/*
/plugins/user/joomla/* /plugins/user/joomla/*
@ -426,8 +532,10 @@
/plugins/user/index.html /plugins/user/index.html
/plugins/index.html /plugins/index.html
/templates/atomic/* /templates/atomic/*
/templates/beez3/*
/templates/beez_20/* /templates/beez_20/*
/templates/beez5/* /templates/beez5/*
/templates/protostar/*
/templates/system/* /templates/system/*
/templates/index.html /templates/index.html
/tmp/* /tmp/*
@ -435,3 +543,4 @@
/index.php /index.php
/joomla.xml /joomla.xml
/*.txt /*.txt
/robots.txt.dist

View File

@ -1,2 +0,0 @@
*.pyc
*.class

13
KiCAD.gitignore Normal file
View File

@ -0,0 +1,13 @@
# For PCBs designed using KiCAD: http://www.kicad-pcb.org/
# Temporary files
*.000
*.bak
*.bck
*.kicad_pcb-bak
# Netlist files (exported from Eeschema)
*.net
# Autorouter files (exported from Pcbnew)
.dsn

View File

@ -1,4 +1,4 @@
Copyright (c) 2014 GitHub, Inc. Copyright (c) 2016 GitHub, Inc.
Permission is hereby granted, free of charge, to any person obtaining a Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"), copy of this software and associated documentation files (the "Software"),

View File

@ -1,3 +1,14 @@
/bootstrap/compiled.php vendor/
node_modules/
# Laravel 4 specific
bootstrap/compiled.php
app/storage/
# Laravel 5 & Lumen specific
bootstrap/cache/
storage/
.env.*.php .env.*.php
.env.php .env.php
.env
.env.example

41
Lua.gitignore Normal file
View File

@ -0,0 +1,41 @@
# Compiled Lua sources
luac.out
# luarocks build files
*.src.rock
*.zip
*.tar.gz
# Object files
*.o
*.os
*.ko
*.obj
*.elf
# Precompiled Headers
*.gch
*.pch
# Libraries
*.lib
*.a
*.la
*.lo
*.def
*.exp
# Shared objects (inc. Windows DLLs)
*.dll
*.so
*.so.*
*.dylib
# Executables
*.exe
*.out
*.app
*.i*86
*.x86_64
*.hex

View File

@ -1,3 +1,4 @@
.htaccess.sample
.modgit/ .modgit/
.modman/ .modman/
app/code/community/Phoenix/ app/code/community/Phoenix/
@ -21,6 +22,7 @@ app/etc/modules/Mage_Bundle.xml
app/etc/modules/Mage_Captcha.xml app/etc/modules/Mage_Captcha.xml
app/etc/modules/Mage_Centinel.xml app/etc/modules/Mage_Centinel.xml
app/etc/modules/Mage_Compiler.xml app/etc/modules/Mage_Compiler.xml
app/etc/modules/Mage_ConfigurableSwatches.xml
app/etc/modules/Mage_Connect.xml app/etc/modules/Mage_Connect.xml
app/etc/modules/Mage_CurrencySymbol.xml app/etc/modules/Mage_CurrencySymbol.xml
app/etc/modules/Mage_Downloadable.xml app/etc/modules/Mage_Downloadable.xml
@ -76,6 +78,7 @@ lib/.htaccess
lib/LinLibertineFont/ lib/LinLibertineFont/
lib/Mage/ lib/Mage/
lib/PEAR/ lib/PEAR/
lib/Pelago/
lib/phpseclib/ lib/phpseclib/
lib/Varien/ lib/Varien/
lib/Zend/ lib/Zend/
@ -86,7 +89,7 @@ LICENSE_AFL.txt
LICENSE.html LICENSE.html
LICENSE.txt LICENSE.txt
LICENSE_EE* LICENSE_EE*
mage /mage
media/customer/ media/customer/
media/dhl/ media/dhl/
media/downloadable/ media/downloadable/
@ -94,6 +97,7 @@ media/.htaccess
media/import/ media/import/
media/xmlconnect/ media/xmlconnect/
media/catalog/product/cache/ media/catalog/product/cache/
media/catalog/product/placeholder/default/
/api.php /api.php
nbproject/ nbproject/
pear pear
@ -105,6 +109,7 @@ shell/abstract.php
shell/compiler.php shell/compiler.php
shell/indexer.php shell/indexer.php
shell/log.php shell/log.php
sitemap.xml
skin/adminhtml/default/default/ skin/adminhtml/default/default/
skin/adminhtml/default/enterprise skin/adminhtml/default/enterprise
skin/frontend/base/ skin/frontend/base/

View File

@ -4,3 +4,6 @@ pom.xml.releaseBackup
pom.xml.versionsBackup pom.xml.versionsBackup
pom.xml.next pom.xml.next
release.properties release.properties
dependency-reduced-pom.xml
buildNumber.properties
.mvn/timing.properties

View File

@ -1,4 +1,5 @@
Mercury/ Mercury/
Mercury.modules
*.mh *.mh
*.err *.err
*.init *.init

View File

@ -1,2 +0,0 @@
.meteor/local
.meteor/meteorite

1
Nim.gitignore Normal file
View File

@ -0,0 +1 @@
nimcache/

View File

@ -1,6 +1,7 @@
# Logs # Logs
logs logs
*.log *.log
npm-debug.log*
# Runtime data # Runtime data
pids pids
@ -23,5 +24,10 @@ coverage
build/Release build/Release
# Dependency directory # Dependency directory
# https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git-
node_modules node_modules
# Optional npm cache directory
.npm
# Optional REPL history
.node_repl_history

View File

@ -7,3 +7,14 @@
*.cmx *.cmx
*.cmxs *.cmxs
*.cmxa *.cmxa
# ocamlbuild working directory
_build/
# ocamlbuild targets
*.byte
*.native
# oasis generated files
setup.data
setup.log

View File

@ -1,6 +1,12 @@
# Xcode # Xcode
# #
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
## Build generated
build/ build/
DerivedData
## Various settings
*.pbxuser *.pbxuser
!default.pbxuser !default.pbxuser
*.mode1v3 *.mode1v3
@ -10,17 +16,38 @@ build/
*.perspectivev3 *.perspectivev3
!default.perspectivev3 !default.perspectivev3
xcuserdata xcuserdata
## Other
*.xccheckout *.xccheckout
*.moved-aside *.moved-aside
DerivedData *.xcuserstate
*.xcscmblueprint
## Obj-C/Swift specific
*.hmap *.hmap
*.ipa *.ipa
*.xcuserstate
# CocoaPods # CocoaPods
# #
# We recommend against adding the Pods directory to your .gitignore. However # We recommend against adding the Pods directory to your .gitignore. However
# you should judge for yourself, the pros and cons are mentioned at: # you should judge for yourself, the pros and cons are mentioned at:
# http://guides.cocoapods.org/using/using-cocoapods.html#should-i-ignore-the-pods-directory-in-source-control # https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
# #
# Pods/ # Pods/
# Carthage
#
# Add this line if you want to avoid checking in source code from Carthage dependencies.
# Carthage/Checkouts
Carthage/Build
# fastlane
#
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
# screenshots whenever they are needed.
# For more information about the recommended setup visit:
# https://github.com/fastlane/fastlane/blob/master/docs/Gitignore.md
fastlane/report.xml
fastlane/screenshots

View File

@ -9,3 +9,5 @@ image/data/
image/cache/ image/cache/
system/cache/ system/cache/
system/logs/ system/logs/
system/storage/

View File

@ -17,3 +17,4 @@ nytprof.out
/pm_to_blib /pm_to_blib
*.o *.o
*.bs *.bs
/_eumm/

View File

@ -5,13 +5,11 @@ bin/
/lib/ /lib/
/logs/ /logs/
/modules /modules
/project/project
/project/target /project/target
/target /target
tmp/ tmp/
test-result test-result
server.pid server.pid
*.iml
*.eml *.eml
/dist/ /dist/
.cache .cache

View File

@ -1,29 +1,25 @@
# Directories content # Private files
cache/class_index.php # The following files contain your database credentials and other personal data.
cache/smarty/cache/*
!cache/smarty/cache/index.php
cache/smarty/compile/*
!cache/smarty/compile/index.php
cache/tcpdf/*
!cache/tcpdf/index.php
config/settings.*.php
# Cache, temp and generated files
# The following files are generated by PrestaShop.
admin-dev/autoupgrade/
/cache/*
config/xml/*.xml config/xml/*.xml
config/settings.inc.php /log/*
*sitemap.xml
themes/*/cache/
modules/*/config*.xml
log/*.log # Site content
# The following folders contain product images, virtual products, CSV's, etc.
img/* admin-dev/backups/
!img/index.php admin-dev/export/
!img/*/index.php admin-dev/import/
download/
tools/smarty*/cache/*.php /img/*
!tools/smarty*/cache/index.php upload/
tools/smarty*/compile/*.php
!tools/smarty*/compile/index.php
themes/default/cache/*.js
themes/default/cache/*.css
# Ignore files on root directory
robots.txt
sitemap.xml

View File

@ -1,6 +1,7 @@
# Byte-compiled / optimized / DLL files # Byte-compiled / optimized / DLL files
__pycache__/ __pycache__/
*.py[cod] *.py[cod]
*$py.class
# C extensions # C extensions
*.so *.so
@ -13,6 +14,7 @@ develop-eggs/
dist/ dist/
downloads/ downloads/
eggs/ eggs/
.eggs/
lib/ lib/
lib64/ lib64/
parts/ parts/
@ -36,9 +38,12 @@ pip-delete-this-directory.txt
htmlcov/ htmlcov/
.tox/ .tox/
.coverage .coverage
.coverage.*
.cache .cache
nosetests.xml nosetests.xml
coverage.xml coverage.xml
*,cover
.hypothesis/
# Translations # Translations
*.mo *.mo
@ -52,3 +57,6 @@ docs/_build/
# PyBuilder # PyBuilder
target/ target/
#Ipython Notebook
.ipynb_checkpoints

View File

@ -23,7 +23,7 @@ moc_*.cpp
qrc_*.cpp qrc_*.cpp
ui_*.h ui_*.h
Makefile* Makefile*
*-build-* *build-*
# QtCreator # QtCreator

View File

@ -2,6 +2,9 @@
.Rhistory .Rhistory
.Rapp.history .Rapp.history
# Session Data files
.RData
# Example code in package build process # Example code in package build process
*-Ex.R *-Ex.R
@ -11,3 +14,6 @@
# produced vignettes # produced vignettes
vignettes/*.html vignettes/*.html
vignettes/*.pdf vignettes/*.pdf
# OAuth2 token, see https://github.com/hadley/httr/releases/tag/v0.3
.httr-oauth

View File

@ -31,17 +31,17 @@ high quality, we request that contributions adhere to the following guidelines.
- **Provide a link to the application or projects homepage**. Unless its - **Provide a link to the application or projects homepage**. Unless its
extremely popular, theres a chance the maintainers dont know about or use extremely popular, theres a chance the maintainers dont know about or use
the language, framework, editor, app, or project your change applies to. the language, framework, editor, app, or project your change applies to.
- **Provide links to documentation** supporting the change youre making. - **Provide links to documentation** supporting the change youre making.
Current, canonical documentation mentioning the files being ignored is best. Current, canonical documentation mentioning the files being ignored is best.
If documentation isnt available to support your change, do the best you can If documentation isnt available to support your change, do the best you can
to explain what the files being ignored are for. to explain what the files being ignored are for.
- **Explain why youre making a change**. Even if it seems self-evident, please - **Explain why youre making a change**. Even if it seems self-evident, please
take a sentence or two to tell us why your change or addition should happen. take a sentence or two to tell us why your change or addition should happen.
Its especially helpful to articulate why this change applies to *everyone* Its especially helpful to articulate why this change applies to *everyone*
who works with the applicable technology, rather than just you or your team. who works with the applicable technology, rather than just you or your team.
- **Please consider the scope of your change**. If your change specific to a - **Please consider the scope of your change**. If your change specific to a
certain language or framework, then make sure the change is made to the certain language or framework, then make sure the change is made to the
template for that language or framework, rather than to the template for an template for that language or framework, rather than to the template for an
@ -70,9 +70,9 @@ Heres how we suggest you go about proposing a change to this project:
Using the web-based interface to make changes is fine too, and will help you Using the web-based interface to make changes is fine too, and will help you
by automatically forking the project and prompting to send a pull request too. by automatically forking the project and prompting to send a pull request too.
[fork]: http://help.github.com/forking/ [fork]: https://help.github.com/articles/fork-a-repo/
[branch]: https://help.github.com/articles/creating-and-deleting-branches-within-your-repository [branch]: https://help.github.com/articles/creating-and-deleting-branches-within-your-repository
[pr]: http://help.github.com/pull-requests/ [pr]: https://help.github.com/articles/using-pull-requests/
## License ## License

View File

@ -16,11 +16,11 @@ pickle-email-*.html
config/initializers/secret_token.rb config/initializers/secret_token.rb
config/secrets.yml config/secrets.yml
## Environment normalisation: ## Environment normalization:
/.bundle /.bundle
/vendor/bundle /vendor/bundle
# these should all be checked in to normalise the environment: # these should all be checked in to normalize the environment:
# Gemfile.lock, .ruby-version, .ruby-gemset # Gemfile.lock, .ruby-version, .ruby-gemset
# unless supporting rvm < 1.11.0 or doing something fancy, ignore this: # unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
@ -30,3 +30,6 @@ config/secrets.yml
/vendor/assets/bower_components /vendor/assets/bower_components
*.bowerrc *.bowerrc
bower.json bower.json
# Ignore pow environment settings
.powenv

View File

@ -5,6 +5,7 @@
/InstalledFiles /InstalledFiles
/pkg/ /pkg/
/spec/reports/ /spec/reports/
/spec/examples.txt
/test/tmp/ /test/tmp/
/test/version_tmp/ /test/version_tmp/
/tmp/ /tmp/
@ -20,8 +21,9 @@ build/
/doc/ /doc/
/rdoc/ /rdoc/
## Environment normalisation: ## Environment normalization:
/.bundle/ /.bundle/
/vendor/bundle
/lib/bundler/man/ /lib/bundler/man/
# for a library or gem, you might want to ignore these files since the code is # for a library or gem, you might want to ignore these files since the code is

View File

@ -9,3 +9,7 @@
# Generated by Cargo # Generated by Cargo
/target/ /target/
# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries
# More information here http://doc.crates.io/guide.html#cargotoml-vs-cargolock
Cargo.lock

View File

@ -1,2 +1,2 @@
.sass-cache .sass-cache/
*.css.map *.css.map

View File

@ -1,6 +1,12 @@
# Xcode # Xcode
# #
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
## Build generated
build/ build/
DerivedData
## Various settings
*.pbxuser *.pbxuser
!default.pbxuser !default.pbxuser
*.mode1v3 *.mode1v3
@ -10,17 +16,48 @@ build/
*.perspectivev3 *.perspectivev3
!default.perspectivev3 !default.perspectivev3
xcuserdata xcuserdata
## Other
*.xccheckout *.xccheckout
*.moved-aside *.moved-aside
DerivedData *.xcuserstate
*.xcscmblueprint
## Obj-C/Swift specific
*.hmap *.hmap
*.ipa *.ipa
*.xcuserstate
## Playgrounds
timeline.xctimeline
playground.xcworkspace
# Swift Package Manager
#
# Add this line if you want to avoid checking in source code from Swift Package Manager dependencies.
# Packages/
.build/
# CocoaPods # CocoaPods
# #
# We recommend against adding the Pods directory to your .gitignore. However # We recommend against adding the Pods directory to your .gitignore. However
# you should judge for yourself, the pros and cons are mentioned at: # you should judge for yourself, the pros and cons are mentioned at:
# http://guides.cocoapods.org/using/using-cocoapods.html#should-i-ignore-the-pods-directory-in-source-control # https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
# #
# Pods/ # Pods/
# Carthage
#
# Add this line if you want to avoid checking in source code from Carthage dependencies.
# Carthage/Checkouts
Carthage/Build
# fastlane
#
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
# screenshots whenever they are needed.
# For more information about the recommended setup visit:
# https://github.com/fastlane/fastlane/blob/master/docs/Gitignore.md
fastlane/report.xml
fastlane/screenshots

View File

@ -26,6 +26,9 @@
/web/bundles/ /web/bundles/
/web/uploads/ /web/uploads/
# Assets managed by Bower
/web/assets/vendor/
# PHPUnit # PHPUnit
/app/phpunit.xml /app/phpunit.xml
/phpunit.xml /phpunit.xml

View File

@ -6,6 +6,7 @@
*.fls *.fls
*.out *.out
*.toc *.toc
*.fmt
## Intermediate documents: ## Intermediate documents:
*.dvi *.dvi
@ -26,12 +27,12 @@
## Build tool auxiliary files: ## Build tool auxiliary files:
*.fdb_latexmk *.fdb_latexmk
*.synctex
*.synctex.gz *.synctex.gz
*.synctex.gz(busy) *.synctex.gz(busy)
*.pdfsync *.pdfsync
## Auxiliary and intermediate files from other packages: ## Auxiliary and intermediate files from other packages:
# algorithms # algorithms
*.alg *.alg
*.loa *.loa
@ -47,6 +48,9 @@ acs-*.bib
*.snm *.snm
*.vrb *.vrb
# cprotect
*.cpt
#(e)ledmac/(e)ledpar #(e)ledmac/(e)ledpar
*.end *.end
*.[1-9] *.[1-9]
@ -69,9 +73,17 @@ acs-*.bib
*.glo *.glo
*.gls *.gls
# gnuplottex
*-gnuplottex-*
# hyperref # hyperref
*.brf *.brf
# knitr
*-concordance.tex
*.tikz
*-tikzDictionary
# listings # listings
*.lol *.lol
@ -84,14 +96,19 @@ acs-*.bib
# minitoc # minitoc
*.maf *.maf
*.mtc *.mtc
*.mtc0 *.mtc[0-9]
*.mtc[1-9][0-9]
# minted # minted
_minted*
*.pyg *.pyg
# morewrites # morewrites
*.mw *.mw
# mylatexformat
*.fmt
# nomencl # nomencl
*.nlo *.nlo
@ -105,8 +122,38 @@ acs-*.bib
*.sympy *.sympy
sympy-plots-for-*.tex/ sympy-plots-for-*.tex/
# pdfcomment
*.upa
*.upb
#pythontex
*.pytxcode
pythontex-files-*/
# Texpad
.texpadtmp
# TikZ & PGF
*.dpth
*.md5
*.auxlock
# todonotes # todonotes
*.tdo *.tdo
# xindy # xindy
*.xdy *.xdy
# xypic precompiled matrices
*.xyc
# WinEdt
*.bak
*.sav
# endfloat
*.ttt
*.fff
# Latexian
TSWLatexianTemp*

View File

@ -1,18 +1,20 @@
## TYPO3 v4 ## TYPO3 v6.2
# Ignore serveral upload and file directories. # Ignore several upload and file directories.
/fileadmin/user_upload/ /fileadmin/user_upload/
/fileadmin/_temp_/ /fileadmin/_temp_/
/fileadmin/_processed_/
/uploads/ /uploads/
# Ignore cache # Ignore cache
/typo3conf/temp_CACHED* /typo3conf/temp_CACHED*
/typo3conf/temp_fieldInfo.php /typo3conf/temp_fieldInfo.php
# Ignore local config which overrides typo3 config. /typo3conf/deprecation_*.log
# You should include your local stuff with `@include('localconf_local.php');` at the end of localconf.php. /typo3conf/AdditionalConfiguration.php
# See http://stackoverflow.com/questions/11905360/how-best-to-manage-typo3-installations-using-git for details.
/typo3conf/localconf_local.php
# Ignore system folders, you should have them symlinked. # Ignore system folders, you should have them symlinked.
# If not comment out the following two entries. # If not comment out the following entries.
/typo3 /typo3
/t3lib /typo3_src
/typo3_src-*
/.htaccess
/index.php
# Ignore temp directory. # Ignore temp directory.
/typo3temp/ /typo3temp/

View File

@ -1,12 +1,11 @@
# Note: VisualStudio gitignore rules may also be relevant # Note: VisualStudio gitignore rules may also be relevant
# Umbraco
# Ignore unimportant folders generated by Umbraco # Ignore unimportant folders generated by Umbraco
**/App_Data/ClientDependency/
**/App_Data/ExamineIndexes/
**/App_Data/Logs/ **/App_Data/Logs/
**/App_Data/[Pp]review/ **/App_Data/[Pp]review/
**/App_Data/TEMP/ **/App_Data/TEMP/
Cached/ **/App_Data/NuGetBackup/
# Ignore Umbraco content cache file # Ignore Umbraco content cache file
**/App_Data/umbraco.config **/App_Data/umbraco.config
@ -15,3 +14,6 @@ Cached/
# Make sure to include details from VisualStudio.gitignore BEFORE this # Make sure to include details from VisualStudio.gitignore BEFORE this
!**/App_Data/[Pp]ackages/ !**/App_Data/[Pp]ackages/
!**/[Uu]mbraco/[Dd]eveloper/[Pp]ackages !**/[Uu]mbraco/[Dd]eveloper/[Pp]ackages
# ImageProcessor DiskCache
**/App_Data/cache/

View File

@ -1,17 +1,26 @@
[Ll]ibrary/ /[Ll]ibrary/
[Tt]emp/ /[Tt]emp/
[Oo]bj/ /[Oo]bj/
[Bb]uild/ /[Bb]uild/
/[Bb]uilds/
/Assets/AssetStoreTools*
# Autogenerated VS/MD solution and project files # Autogenerated VS/MD solution and project files
ExportedObj/
*.csproj *.csproj
*.unityproj *.unityproj
*.sln *.sln
*.suo *.suo
*.tmp
*.user *.user
*.userprefs *.userprefs
*.pidb *.pidb
*.booproj *.booproj
*.svd
# Unity3D generated meta files
*.pidb.meta
# Unity3D Generated File On Crash Reports # Unity3D Generated File On Crash Reports
sysinfo.txt sysinfo.txt

58
UnrealEngine.gitignore Normal file
View File

@ -0,0 +1,58 @@
# Compiled Object files
*.slo
*.lo
*.o
*.obj
# Precompiled Headers
*.gch
*.pch
# Compiled Dynamic libraries
*.so
*.dylib
*.dll
# Fortran module files
*.mod
# Compiled Static libraries
*.lai
*.la
*.a
*.lib
# Executables
*.exe
*.out
*.app
*.ipa
# These project files can be generated by the engine
*.xcodeproj
*.sln
*.suo
*.opensdf
*.sdf
# Precompiled Assets
SourceArt/**/*.png
SourceArt/**/*.tga
# Binary Files
Binaries/*
# Builds
Build/*
# Don't ignore icon files in Build
!Build/**/*.ico
# Configuration files generated by the Editor
Saved/*
# Compiled source files for the engine to use
Intermediate/*
# Cache files for the editor to use
DerivedDataCache/*

View File

@ -7,6 +7,9 @@
*.userosscache *.userosscache
*.sln.docstates *.sln.docstates
# User-specific files (MonoDevelop/Xamarin Studio)
*.userprefs
# Build results # Build results
[Dd]ebug/ [Dd]ebug/
[Dd]ebugPublic/ [Dd]ebugPublic/
@ -14,19 +17,20 @@
[Rr]eleases/ [Rr]eleases/
x64/ x64/
x86/ x86/
build/
bld/ bld/
[Bb]in/ [Bb]in/
[Oo]bj/ [Oo]bj/
# Roslyn cache directories # Visual Studio 2015 cache/options directory
*.ide/ .vs/
# Uncomment if you have tasks that create the project's static files in wwwroot
#wwwroot/
# MSTest test Results # MSTest test Results
[Tt]est[Rr]esult*/ [Tt]est[Rr]esult*/
[Bb]uild[Ll]og.* [Bb]uild[Ll]og.*
#NUNIT # NUNIT
*.VisualState.xml *.VisualState.xml
TestResult.xml TestResult.xml
@ -35,6 +39,10 @@ TestResult.xml
[Rr]eleasePS/ [Rr]eleasePS/
dlldata.c dlldata.c
# DNX
project.lock.json
artifacts/
*_i.c *_i.c
*_p.c *_p.c
*_i.h *_i.h
@ -67,6 +75,7 @@ _Chutzpah*
ipch/ ipch/
*.aps *.aps
*.ncb *.ncb
*.opendb
*.opensdf *.opensdf
*.sdf *.sdf
*.cachefile *.cachefile
@ -75,6 +84,7 @@ ipch/
*.psess *.psess
*.vsp *.vsp
*.vspx *.vspx
*.sap
# TFS 2012 Local Workspace # TFS 2012 Local Workspace
$tf/ $tf/
@ -87,7 +97,7 @@ _ReSharper*/
*.[Rr]e[Ss]harper *.[Rr]e[Ss]harper
*.DotSettings.user *.DotSettings.user
# JustCode is a .NET coding addin-in # JustCode is a .NET coding add-in
.JustCode .JustCode
# TeamCity is a build add-in # TeamCity is a build add-in
@ -99,6 +109,7 @@ _TeamCity*
# NCrunch # NCrunch
_NCrunch_* _NCrunch_*
.*crunch*.local.xml .*crunch*.local.xml
nCrunchTemp_*
# MightyMoose # MightyMoose
*.mm.* *.mm.*
@ -139,18 +150,33 @@ publish/
!**/packages/build/ !**/packages/build/
# Uncomment if necessary however generally it will be regenerated when needed # Uncomment if necessary however generally it will be regenerated when needed
#!**/packages/repositories.config #!**/packages/repositories.config
# NuGet v3's project.json files produces more ignoreable files
*.nuget.props
*.nuget.targets
# Windows Azure Build Output # Microsoft Azure Build Output
csx/ csx/
*.build.csdef *.build.csdef
# Microsoft Azure Emulator
ecf/
rcf/
# Microsoft Azure ApplicationInsights config file
ApplicationInsights.config
# Windows Store app package directory # Windows Store app package directory
AppPackages/ AppPackages/
BundleArtifacts/
# Visual Studio cache files
# files ending in .cache can be ignored
*.[Cc]ache
# but keep track of directories ending in .cache
!*.[Cc]ache/
# Others # Others
*.Cache
ClientBin/ ClientBin/
[Ss]tyle[Cc]op.*
~$* ~$*
*~ *~
*.dbmdl *.dbmdl
@ -158,7 +184,7 @@ ClientBin/
*.pfx *.pfx
*.publishsettings *.publishsettings
node_modules/ node_modules/
bower_components/ orleans.codegen.cs
# RIA/Silverlight projects # RIA/Silverlight projects
Generated_Code/ Generated_Code/
@ -182,3 +208,29 @@ UpgradeLog*.htm
# Microsoft Fakes # Microsoft Fakes
FakesAssemblies/ FakesAssemblies/
# GhostDoc plugin setting file
*.GhostDoc.xml
# Node.js Tools for Visual Studio
.ntvs_analysis.dat
# Visual Studio 6 build log
*.plg
# Visual Studio 6 workspace options file
*.opt
# Visual Studio LightSwitch build output
**/*.HTMLClient/GeneratedArtifacts
**/*.DesktopClient/GeneratedArtifacts
**/*.DesktopClient/ModelManifest.xml
**/*.Server/GeneratedArtifacts
**/*.Server/ModelManifest.xml
_Pvt_Extensions
# Paket dependency manager
.paket/paket.exe
# FAKE - F# Make
.fake/

View File

@ -1,3 +1,4 @@
# for projects that use Waf for building: http://code.google.com/p/waf/ # for projects that use Waf for building: http://code.google.com/p/waf/
.waf-* .waf-*
.waf3-*
.lock-* .lock-*

View File

@ -11,3 +11,8 @@ wp-content/cache/
wp-content/upgrade/ wp-content/upgrade/
wp-content/uploads/ wp-content/uploads/
wp-content/wp-cache-config.php wp-content/wp-cache-config.php
wp-content/plugins/hello.php
/readme.html
/license.txt