Merge remote-tracking branch 'github/master'
This commit is contained in:
commit
c914c25e2d
@ -15,7 +15,6 @@ gen/
|
|||||||
# Gradle files
|
# Gradle files
|
||||||
.gradle/
|
.gradle/
|
||||||
build/
|
build/
|
||||||
/*/build/
|
|
||||||
|
|
||||||
# Local configuration file (sdk path, etc)
|
# Local configuration file (sdk path, etc)
|
||||||
local.properties
|
local.properties
|
||||||
@ -25,3 +24,9 @@ proguard/
|
|||||||
|
|
||||||
# Log Files
|
# Log Files
|
||||||
*.log
|
*.log
|
||||||
|
|
||||||
|
# Android Studio Navigation editor temp files
|
||||||
|
.navigation/
|
||||||
|
|
||||||
|
# Android Studio captures folder
|
||||||
|
captures/
|
||||||
|
@ -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/
|
||||||
|
@ -27,3 +27,6 @@
|
|||||||
*.i*86
|
*.i*86
|
||||||
*.x86_64
|
*.x86_64
|
||||||
*.hex
|
*.hex
|
||||||
|
|
||||||
|
# Debug files
|
||||||
|
*.dSYM/
|
||||||
|
@ -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
6
CUDA.gitignore
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
*.i
|
||||||
|
*.ii
|
||||||
|
*.gpu
|
||||||
|
*.ptx
|
||||||
|
*.cubin
|
||||||
|
*.fatbin
|
@ -1,11 +1,11 @@
|
|||||||
CakePHP 3
|
# CakePHP 3
|
||||||
|
|
||||||
/vendor/*
|
/vendor/*
|
||||||
/config/app.php
|
/config/app.php
|
||||||
/tmp/*
|
/tmp/*
|
||||||
/logs/*
|
/logs/*
|
||||||
|
|
||||||
CakePHP 2
|
# CakePHP 2
|
||||||
|
|
||||||
/app/tmp/*
|
/app/tmp/*
|
||||||
/app/Config/core.php
|
/app/Config/core.php
|
||||||
|
@ -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
|
||||||
|
20
D.gitignore
Normal file
20
D.gitignore
Normal 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
|
@ -1,14 +1,27 @@
|
|||||||
# Don’t 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
|
||||||
|
@ -53,5 +53,5 @@
|
|||||||
__history/
|
__history/
|
||||||
*.~*
|
*.~*
|
||||||
|
|
||||||
# Castalia statistics file
|
# Castalia statistics file (since XE7 Castalia is distributed with Delphi)
|
||||||
*.stat
|
*.stat
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
/_build
|
/_build
|
||||||
|
/cover
|
||||||
/deps
|
/deps
|
||||||
erl_crash.dump
|
erl_crash.dump
|
||||||
*.ez
|
*.ez
|
||||||
|
5
Elm.gitignore
Normal file
5
Elm.gitignore
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
# elm-package generated files
|
||||||
|
elm-package.json
|
||||||
|
elm-stuff/
|
||||||
|
# elm-repl generated files
|
||||||
|
repl-temp-*
|
@ -26,6 +26,9 @@ local.properties
|
|||||||
# JDT-specific (Eclipse Java Development Tools)
|
# JDT-specific (Eclipse Java Development Tools)
|
||||||
.classpath
|
.classpath
|
||||||
|
|
||||||
|
# Java annotation processor (APT)
|
||||||
|
.factorypath
|
||||||
|
|
||||||
# PDT-specific
|
# PDT-specific
|
||||||
.buildpath
|
.buildpath
|
||||||
|
|
||||||
@ -34,3 +37,6 @@ local.properties
|
|||||||
|
|
||||||
# TeXlipse plugin
|
# TeXlipse plugin
|
||||||
.texlipse
|
.texlipse
|
||||||
|
|
||||||
|
# STS (Spring Tool Suite)
|
||||||
|
.springBeans
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
# Ensime specific
|
# Ensime specific
|
||||||
.ensime
|
.ensime
|
||||||
|
.ensime_cache/
|
||||||
.ensime_lucene/
|
.ensime_lucene/
|
||||||
|
2
Global/GPG.gitignore
Normal file
2
Global/GPG.gitignore
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
secring.*
|
||||||
|
|
@ -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
|
||||||
|
@ -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/
|
||||||
|
@ -1,3 +1,6 @@
|
|||||||
/.hg/*
|
.hg/
|
||||||
*/.hg/*
|
|
||||||
.hgignore
|
.hgignore
|
||||||
|
.hgsigs
|
||||||
|
.hgsub
|
||||||
|
.hgsubstate
|
||||||
|
.hgtags
|
||||||
|
@ -8,3 +8,6 @@
|
|||||||
|
|
||||||
# Excel Backup File
|
# Excel Backup File
|
||||||
*.xlk
|
*.xlk
|
||||||
|
|
||||||
|
# PowerPoint temporary
|
||||||
|
~$*.ppt*
|
||||||
|
1
Global/Otto.gitignore
Normal file
1
Global/Otto.gitignore
Normal file
@ -0,0 +1 @@
|
|||||||
|
.otto/
|
@ -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>
|
||||||
|
@ -1,23 +1,36 @@
|
|||||||
# Waveforms
|
# Waveform formats
|
||||||
*.vpd
|
|
||||||
*.vcd
|
*.vcd
|
||||||
|
*.vpd
|
||||||
*.evcd
|
*.evcd
|
||||||
|
*.fsdb
|
||||||
|
|
||||||
# Binary files
|
# 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
|
simv
|
||||||
|
|
||||||
# Directories used for compilation
|
# Generated for Verilog and VHDL top configs
|
||||||
csrc/
|
|
||||||
simv.daidir/
|
simv.daidir/
|
||||||
|
simv.db.dir/
|
||||||
|
|
||||||
# Log files
|
# 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
|
*.log
|
||||||
|
|
||||||
# DVE, UCLI related files
|
# Coverage results (generated with urg) and database location. The
|
||||||
DVEfiles/
|
# following switch can also be used: urg -dir <coverage_directory>.vdb
|
||||||
ucli*
|
|
||||||
*.key
|
|
||||||
|
|
||||||
# Coverage related files
|
|
||||||
simv.vdb/
|
simv.vdb/
|
||||||
urgReport/
|
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
|
||||||
|
@ -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
|
||||||
|
@ -4,6 +4,7 @@
|
|||||||
[Bb]in
|
[Bb]in
|
||||||
[Ii]nclude
|
[Ii]nclude
|
||||||
[Ll]ib
|
[Ll]ib
|
||||||
|
[Ll]ocal
|
||||||
[Ss]cripts
|
[Ss]cripts
|
||||||
pyvenv.cfg
|
pyvenv.cfg
|
||||||
pip-selfcheck.json
|
pip-selfcheck.json
|
||||||
|
2
Global/VisualStudioCode.gitignore
Normal file
2
Global/VisualStudioCode.gitignore
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
.vscode
|
||||||
|
|
@ -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
|
||||||
|
@ -22,3 +22,7 @@ _testmain.go
|
|||||||
*.exe
|
*.exe
|
||||||
*.test
|
*.test
|
||||||
*.prof
|
*.prof
|
||||||
|
|
||||||
|
# GO15VENDOREXPERIMENT flag specifics
|
||||||
|
vendor/**
|
||||||
|
!vendor/manifest
|
@ -6,3 +6,6 @@ gradle-app.setting
|
|||||||
|
|
||||||
# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
|
# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
|
||||||
!gradle-wrapper.jar
|
!gradle-wrapper.jar
|
||||||
|
|
||||||
|
# Cache of project
|
||||||
|
.gradletasknamecache
|
||||||
|
@ -6,7 +6,6 @@ cabal-dev
|
|||||||
*.chs.h
|
*.chs.h
|
||||||
*.dyn_o
|
*.dyn_o
|
||||||
*.dyn_hi
|
*.dyn_hi
|
||||||
.virtualenv
|
|
||||||
.hpc
|
.hpc
|
||||||
.hsenv
|
.hsenv
|
||||||
.cabal-sandbox/
|
.cabal-sandbox/
|
||||||
@ -14,3 +13,4 @@ cabal.sandbox.config
|
|||||||
*.prof
|
*.prof
|
||||||
*.aux
|
*.aux
|
||||||
*.hp
|
*.hp
|
||||||
|
.stack-work/
|
||||||
|
@ -1,2 +1,3 @@
|
|||||||
_site/
|
_site/
|
||||||
.sass-cache/
|
.sass-cache/
|
||||||
|
.jekyll-metadata
|
||||||
|
@ -1,2 +0,0 @@
|
|||||||
*.pyc
|
|
||||||
*.class
|
|
13
KiCAD.gitignore
Normal file
13
KiCAD.gitignore
Normal 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
|
@ -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
|
@ -89,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/
|
||||||
|
@ -5,3 +5,5 @@ pom.xml.versionsBackup
|
|||||||
pom.xml.next
|
pom.xml.next
|
||||||
release.properties
|
release.properties
|
||||||
dependency-reduced-pom.xml
|
dependency-reduced-pom.xml
|
||||||
|
buildNumber.properties
|
||||||
|
.mvn/timing.properties
|
||||||
|
@ -1,2 +0,0 @@
|
|||||||
.meteor/local
|
|
||||||
.meteor/meteorite
|
|
@ -1,6 +1,7 @@
|
|||||||
# Logs
|
# Logs
|
||||||
logs
|
logs
|
||||||
*.log
|
*.log
|
||||||
|
npm-debug.log*
|
||||||
|
|
||||||
# Runtime data
|
# Runtime data
|
||||||
pids
|
pids
|
||||||
@ -23,5 +24,8 @@ 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
|
# https://docs.npmjs.com/misc/faq#should-i-check-my-node-modules-folder-into-git
|
||||||
node_modules
|
node_modules
|
||||||
|
|
||||||
|
# Optional npm cache directory
|
||||||
|
.npm
|
||||||
|
@ -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,36 @@ 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.
|
||||||
|
|
||||||
|
fastlane/report.xml
|
||||||
|
fastlane/screenshots
|
||||||
|
@ -11,7 +11,6 @@ bin/
|
|||||||
tmp/
|
tmp/
|
||||||
test-result
|
test-result
|
||||||
server.pid
|
server.pid
|
||||||
*.iml
|
|
||||||
*.eml
|
*.eml
|
||||||
/dist/
|
/dist/
|
||||||
.cache
|
.cache
|
||||||
|
@ -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
|
|
||||||
|
@ -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
|
||||||
@ -41,6 +42,8 @@ htmlcov/
|
|||||||
.cache
|
.cache
|
||||||
nosetests.xml
|
nosetests.xml
|
||||||
coverage.xml
|
coverage.xml
|
||||||
|
*,cover
|
||||||
|
.hypothesis/
|
||||||
|
|
||||||
# Translations
|
# Translations
|
||||||
*.mo
|
*.mo
|
||||||
|
@ -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
|
||||||
|
10
README.md
10
README.md
@ -31,17 +31,17 @@ high quality, we request that contributions adhere to the following guidelines.
|
|||||||
- **Provide a link to the application or project’s homepage**. Unless it’s
|
- **Provide a link to the application or project’s homepage**. Unless it’s
|
||||||
extremely popular, there’s a chance the maintainers don’t know about or use
|
extremely popular, there’s a chance the maintainers don’t 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 you’re making.
|
- **Provide links to documentation** supporting the change you’re making.
|
||||||
Current, canonical documentation mentioning the files being ignored is best.
|
Current, canonical documentation mentioning the files being ignored is best.
|
||||||
If documentation isn’t available to support your change, do the best you can
|
If documentation isn’t 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 you’re making a change**. Even if it seems self-evident, please
|
- **Explain why you’re 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.
|
||||||
It’s especially helpful to articulate why this change applies to *everyone*
|
It’s 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 @@ Here’s 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
|
||||||
|
|
||||||
|
@ -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/
|
||||||
|
@ -1,2 +1,2 @@
|
|||||||
.sass-cache
|
.sass-cache/
|
||||||
*.css.map
|
*.css.map
|
||||||
|
@ -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,18 +16,22 @@ 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/
|
||||||
|
|
||||||
@ -31,3 +41,11 @@ DerivedData
|
|||||||
# Carthage/Checkouts
|
# Carthage/Checkouts
|
||||||
|
|
||||||
Carthage/Build
|
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.
|
||||||
|
|
||||||
|
fastlane/report.xml
|
||||||
|
fastlane/screenshots
|
||||||
|
@ -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
|
||||||
|
@ -33,6 +33,7 @@
|
|||||||
|
|
||||||
## Auxiliary and intermediate files from other packages:
|
## Auxiliary and intermediate files from other packages:
|
||||||
|
|
||||||
|
|
||||||
# algorithms
|
# algorithms
|
||||||
*.alg
|
*.alg
|
||||||
*.loa
|
*.loa
|
||||||
@ -93,7 +94,8 @@ acs-*.bib
|
|||||||
# minitoc
|
# minitoc
|
||||||
*.maf
|
*.maf
|
||||||
*.mtc
|
*.mtc
|
||||||
*.mtc0
|
*.mtc[0-9]
|
||||||
|
*.mtc[1-9][0-9]
|
||||||
|
|
||||||
# minted
|
# minted
|
||||||
_minted*
|
_minted*
|
||||||
@ -102,6 +104,9 @@ _minted*
|
|||||||
# morewrites
|
# morewrites
|
||||||
*.mw
|
*.mw
|
||||||
|
|
||||||
|
# mylatexformat
|
||||||
|
*.fmt
|
||||||
|
|
||||||
# nomencl
|
# nomencl
|
||||||
*.nlo
|
*.nlo
|
||||||
|
|
||||||
@ -115,6 +120,18 @@ _minted*
|
|||||||
*.sympy
|
*.sympy
|
||||||
sympy-plots-for-*.tex/
|
sympy-plots-for-*.tex/
|
||||||
|
|
||||||
|
#pythontex
|
||||||
|
*.pytxcode
|
||||||
|
pythontex-files-*/
|
||||||
|
|
||||||
|
# Texpad
|
||||||
|
.texpadtmp
|
||||||
|
|
||||||
|
# TikZ & PGF
|
||||||
|
*.dpth
|
||||||
|
*.md5
|
||||||
|
*.auxlock
|
||||||
|
|
||||||
# todonotes
|
# todonotes
|
||||||
*.tdo
|
*.tdo
|
||||||
|
|
||||||
|
@ -1,18 +1,20 @@
|
|||||||
## TYPO3 v4
|
## TYPO3 v6.2
|
||||||
# Ignore serveral upload and file directories.
|
# Ignore serveral 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/
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
[Ll]ibrary/
|
/[Ll]ibrary/
|
||||||
[Tt]emp/
|
/[Tt]emp/
|
||||||
[Oo]bj/
|
/[Oo]bj/
|
||||||
[Bb]uild/
|
/[Bb]uild/
|
||||||
|
|
||||||
# Autogenerated VS/MD solution and project files
|
# Autogenerated VS/MD solution and project files
|
||||||
*.csproj
|
*.csproj
|
||||||
|
58
UnrealEngine.gitignore
Normal file
58
UnrealEngine.gitignore
Normal 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/*
|
@ -22,8 +22,10 @@ bld/
|
|||||||
[Bb]in/
|
[Bb]in/
|
||||||
[Oo]bj/
|
[Oo]bj/
|
||||||
|
|
||||||
# Visual Studo 2015 cache/options directory
|
# Visual Studio 2015 cache/options directory
|
||||||
.vs/
|
.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*/
|
||||||
@ -38,6 +40,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
|
||||||
@ -78,6 +84,7 @@ ipch/
|
|||||||
*.psess
|
*.psess
|
||||||
*.vsp
|
*.vsp
|
||||||
*.vspx
|
*.vspx
|
||||||
|
*.sap
|
||||||
|
|
||||||
# TFS 2012 Local Workspace
|
# TFS 2012 Local Workspace
|
||||||
$tf/
|
$tf/
|
||||||
@ -90,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
|
||||||
@ -102,6 +109,7 @@ _TeamCity*
|
|||||||
# NCrunch
|
# NCrunch
|
||||||
_NCrunch_*
|
_NCrunch_*
|
||||||
.*crunch*.local.xml
|
.*crunch*.local.xml
|
||||||
|
nCrunchTemp_*
|
||||||
|
|
||||||
# MightyMoose
|
# MightyMoose
|
||||||
*.mm.*
|
*.mm.*
|
||||||
@ -147,11 +155,20 @@ publish/
|
|||||||
csx/
|
csx/
|
||||||
*.build.csdef
|
*.build.csdef
|
||||||
|
|
||||||
|
# Windows Azure Emulator
|
||||||
|
efc/
|
||||||
|
rfc/
|
||||||
|
|
||||||
# Windows Store app package directory
|
# Windows Store app package directory
|
||||||
AppPackages/
|
AppPackages/
|
||||||
|
|
||||||
# Others
|
# Visual Studio cache files
|
||||||
|
# files ending in .cache can be ignored
|
||||||
*.[Cc]ache
|
*.[Cc]ache
|
||||||
|
# but keep track of directories ending in .cache
|
||||||
|
!*.[Cc]ache/
|
||||||
|
|
||||||
|
# Others
|
||||||
ClientBin/
|
ClientBin/
|
||||||
[Ss]tyle[Cc]op.*
|
[Ss]tyle[Cc]op.*
|
||||||
~$*
|
~$*
|
||||||
@ -161,7 +178,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/
|
||||||
@ -186,6 +203,9 @@ UpgradeLog*.htm
|
|||||||
# Microsoft Fakes
|
# Microsoft Fakes
|
||||||
FakesAssemblies/
|
FakesAssemblies/
|
||||||
|
|
||||||
|
# GhostDoc plugin setting file
|
||||||
|
*.GhostDoc.xml
|
||||||
|
|
||||||
# Node.js Tools for Visual Studio
|
# Node.js Tools for Visual Studio
|
||||||
.ntvs_analysis.dat
|
.ntvs_analysis.dat
|
||||||
|
|
||||||
@ -194,3 +214,17 @@ FakesAssemblies/
|
|||||||
|
|
||||||
# Visual Studio 6 workspace options file
|
# Visual Studio 6 workspace options file
|
||||||
*.opt
|
*.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/
|
||||||
|
@ -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-*
|
||||||
|
@ -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
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user