Update gitignore list (#5258)
* update gitignore * Handle symlink in tar * Add some logs
This commit is contained in:
parent
54259e2f88
commit
57a8440db3
77 changed files with 767 additions and 159 deletions
|
@ -1,9 +1,8 @@
|
||||||
# Build and Release Folders
|
# Build and Release Folders
|
||||||
bin/
|
|
||||||
bin-debug/
|
bin-debug/
|
||||||
bin-release/
|
bin-release/
|
||||||
[Oo]bj/ # FlashDevelop obj
|
[Oo]bj/
|
||||||
[Bb]in/ # FlashDevelop bin
|
[Bb]in/
|
||||||
|
|
||||||
# Other files and folders
|
# Other files and folders
|
||||||
.settings/
|
.settings/
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
# Built application files
|
# Built application files
|
||||||
*.apk
|
*.apk
|
||||||
*.ap_
|
*.ap_
|
||||||
|
*.aab
|
||||||
|
|
||||||
# Files for the ART/Dalvik VM
|
# Files for the ART/Dalvik VM
|
||||||
*.dex
|
*.dex
|
||||||
|
@ -32,16 +33,20 @@ proguard/
|
||||||
# Android Studio captures folder
|
# Android Studio captures folder
|
||||||
captures/
|
captures/
|
||||||
|
|
||||||
# Intellij
|
# IntelliJ
|
||||||
*.iml
|
*.iml
|
||||||
.idea/workspace.xml
|
.idea/workspace.xml
|
||||||
.idea/tasks.xml
|
.idea/tasks.xml
|
||||||
.idea/gradle.xml
|
.idea/gradle.xml
|
||||||
|
.idea/assetWizardSettings.xml
|
||||||
.idea/dictionaries
|
.idea/dictionaries
|
||||||
.idea/libraries
|
.idea/libraries
|
||||||
|
.idea/caches
|
||||||
|
|
||||||
# Keystore files
|
# Keystore files
|
||||||
*.jks
|
# Uncomment the following lines if you do not want to check your keystore files in.
|
||||||
|
#*.jks
|
||||||
|
#*.keystore
|
||||||
|
|
||||||
# External native build folder generated in Android Studio 2.2 and later
|
# External native build folder generated in Android Studio 2.2 and later
|
||||||
.externalNativeBuild
|
.externalNativeBuild
|
||||||
|
@ -53,3 +58,10 @@ google-services.json
|
||||||
freeline.py
|
freeline.py
|
||||||
freeline/
|
freeline/
|
||||||
freeline_project_description.json
|
freeline_project_description.json
|
||||||
|
|
||||||
|
# fastlane
|
||||||
|
fastlane/report.xml
|
||||||
|
fastlane/Preview.html
|
||||||
|
fastlane/screenshots
|
||||||
|
fastlane/test_output
|
||||||
|
fastlane/readme.md
|
||||||
|
|
|
@ -5,17 +5,18 @@
|
||||||
*.rar
|
*.rar
|
||||||
*.zip
|
*.zip
|
||||||
*.gz
|
*.gz
|
||||||
|
*.tgz
|
||||||
*.bzip
|
*.bzip
|
||||||
*.bz2
|
*.bz2
|
||||||
*.xz
|
*.xz
|
||||||
*.lzma
|
*.lzma
|
||||||
*.cab
|
*.cab
|
||||||
|
|
||||||
#packing-only formats
|
# Packing-only formats
|
||||||
*.iso
|
*.iso
|
||||||
*.tar
|
*.tar
|
||||||
|
|
||||||
#package management formats
|
# Package management formats
|
||||||
*.dmg
|
*.dmg
|
||||||
*.xpi
|
*.xpi
|
||||||
*.gem
|
*.gem
|
||||||
|
|
|
@ -9,13 +9,15 @@ Makefile.in
|
||||||
|
|
||||||
# http://www.gnu.org/software/autoconf
|
# http://www.gnu.org/software/autoconf
|
||||||
|
|
||||||
/autom4te.cache
|
autom4te.cache
|
||||||
/autoscan.log
|
/autoscan.log
|
||||||
/autoscan-*.log
|
/autoscan-*.log
|
||||||
/aclocal.m4
|
/aclocal.m4
|
||||||
/compile
|
/compile
|
||||||
/config.guess
|
/config.guess
|
||||||
/config.h.in
|
/config.h.in
|
||||||
|
/config.log
|
||||||
|
/config.status
|
||||||
/config.sub
|
/config.sub
|
||||||
/configure
|
/configure
|
||||||
/configure.scan
|
/configure.scan
|
||||||
|
@ -31,3 +33,11 @@ Makefile.in
|
||||||
# http://www.gnu.org/software/texinfo
|
# http://www.gnu.org/software/texinfo
|
||||||
|
|
||||||
/texinfo.tex
|
/texinfo.tex
|
||||||
|
|
||||||
|
# http://www.gnu.org/software/m4/
|
||||||
|
|
||||||
|
m4/libtool.m4
|
||||||
|
m4/ltoptions.m4
|
||||||
|
m4/ltsugar.m4
|
||||||
|
m4/ltversion.m4
|
||||||
|
m4/lt~obsolete.m4
|
||||||
|
|
5
options/gitignore/Backup
Normal file
5
options/gitignore/Backup
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
*.bak
|
||||||
|
*.gho
|
||||||
|
*.ori
|
||||||
|
*.orig
|
||||||
|
*.tmp
|
|
@ -45,6 +45,7 @@
|
||||||
# Kernel Module Compile Results
|
# Kernel Module Compile Results
|
||||||
*.mod*
|
*.mod*
|
||||||
*.cmd
|
*.cmd
|
||||||
|
.tmp_versions/
|
||||||
modules.order
|
modules.order
|
||||||
Module.symvers
|
Module.symvers
|
||||||
Mkfile.old
|
Mkfile.old
|
||||||
|
|
|
@ -0,0 +1,14 @@
|
||||||
|
pom.xml
|
||||||
|
pom.xml.asc
|
||||||
|
*.jar
|
||||||
|
*.class
|
||||||
|
/lib/
|
||||||
|
/classes/
|
||||||
|
/target/
|
||||||
|
/checkouts/
|
||||||
|
.lein-deps-sum
|
||||||
|
.lein-repl-history
|
||||||
|
.lein-plugins/
|
||||||
|
.lein-failures
|
||||||
|
.nrepl-port
|
||||||
|
.cpcache/
|
|
@ -1,3 +1,4 @@
|
||||||
# General CodeKit files to ignore
|
# General CodeKit files to ignore
|
||||||
config.codekit
|
config.codekit
|
||||||
|
config.codekit3
|
||||||
/min
|
/min
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
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 https://getcomposer.org/doc/01-basic-usage.md#commit-your-composer-lock-file-to-version-control
|
||||||
# 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
|
||||||
# composer.lock
|
# composer.lock
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
# Craft Storage (cache) [http://buildwithcraft.com/help/craft-storage-gitignore]
|
# Craft 2 Storage (https://craftcms.com/support/craft-storage-gitignore)
|
||||||
|
# not necessary for Craft 3 (https://github.com/craftcms/craft/issues/26)
|
||||||
/craft/storage/*
|
/craft/storage/*
|
||||||
!/craft/storage/logo/*
|
!/craft/storage/rebrand
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
# See https://www.dartlang.org/tools/private-files.html
|
# See https://www.dartlang.org/guides/libraries/private-files
|
||||||
|
|
||||||
# Files and directories created by pub
|
# Files and directories created by pub
|
||||||
|
.dart_tool/
|
||||||
.packages
|
.packages
|
||||||
.pub/
|
|
||||||
build/
|
build/
|
||||||
# If you're building an application, you may want to check-in your pubspec.lock
|
# If you're building an application, you may want to check-in your pubspec.lock
|
||||||
pubspec.lock
|
pubspec.lock
|
||||||
|
@ -10,3 +10,12 @@ pubspec.lock
|
||||||
# Directory created by dartdoc
|
# Directory created by dartdoc
|
||||||
# If you don't generate documentation locally you can remove this line.
|
# If you don't generate documentation locally you can remove this line.
|
||||||
doc/api/
|
doc/api/
|
||||||
|
|
||||||
|
# Avoid committing generated Javascript files:
|
||||||
|
*.dart.js
|
||||||
|
*.info.json # Produced by the --dump-info flag.
|
||||||
|
*.js # When generated by dart2js. Don't specify *.js if your
|
||||||
|
# project includes source files written in JavaScript.
|
||||||
|
*.js_
|
||||||
|
*.js.deps
|
||||||
|
*.js.map
|
||||||
|
|
|
@ -64,3 +64,6 @@ __recovery/
|
||||||
|
|
||||||
# Castalia statistics file (since XE7 Castalia is distributed with Delphi)
|
# Castalia statistics file (since XE7 Castalia is distributed with Delphi)
|
||||||
*.stat
|
*.stat
|
||||||
|
|
||||||
|
# Boss dependency manager vendor folder https://github.com/HashLoad/boss
|
||||||
|
modules/
|
||||||
|
|
2
options/gitignore/Diff
Normal file
2
options/gitignore/Diff
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
*.patch
|
||||||
|
*.diff
|
|
@ -1,10 +1,12 @@
|
||||||
# Ignore configuration files that may contain sensitive information.
|
# Ignore configuration files that may contain sensitive information.
|
||||||
sites/*/*settings*.php
|
sites/*/*settings*.php
|
||||||
|
sites/example.sites.php
|
||||||
|
|
||||||
# Ignore paths that contain generated content.
|
# Ignore paths that contain generated content.
|
||||||
files/
|
files/
|
||||||
sites/*/files
|
sites/*/files
|
||||||
sites/*/private
|
sites/*/private
|
||||||
|
sites/*/translations
|
||||||
|
|
||||||
# Ignore default text files
|
# Ignore default text files
|
||||||
robots.txt
|
robots.txt
|
||||||
|
@ -16,6 +18,7 @@ robots.txt
|
||||||
/UPGRADE.txt
|
/UPGRADE.txt
|
||||||
/README.txt
|
/README.txt
|
||||||
sites/README.txt
|
sites/README.txt
|
||||||
|
sites/all/libraries/README.txt
|
||||||
sites/all/modules/README.txt
|
sites/all/modules/README.txt
|
||||||
sites/all/themes/README.txt
|
sites/all/themes/README.txt
|
||||||
|
|
||||||
|
|
|
@ -4,6 +4,9 @@
|
||||||
*.s#?
|
*.s#?
|
||||||
*.b#?
|
*.b#?
|
||||||
*.l#?
|
*.l#?
|
||||||
|
*.b$?
|
||||||
|
*.s$?
|
||||||
|
*.l$?
|
||||||
|
|
||||||
# Eagle project file
|
# Eagle project file
|
||||||
# It contains a serial number and references to the file structure
|
# It contains a serial number and references to the file structure
|
||||||
|
@ -31,14 +34,18 @@ eagle.epf
|
||||||
*.drl
|
*.drl
|
||||||
*.gpi
|
*.gpi
|
||||||
*.pls
|
*.pls
|
||||||
|
*.ger
|
||||||
|
*.xln
|
||||||
|
|
||||||
*.drd
|
*.drd
|
||||||
*.drd.*
|
*.drd.*
|
||||||
|
|
||||||
|
*.s#*
|
||||||
|
*.b#*
|
||||||
|
|
||||||
*.info
|
*.info
|
||||||
|
|
||||||
*.eps
|
*.eps
|
||||||
|
|
||||||
# file locks introduced since 7.x
|
# file locks introduced since 7.x
|
||||||
*.lck
|
*.lck
|
||||||
|
|
||||||
|
|
|
@ -11,9 +11,6 @@ local.properties
|
||||||
.loadpath
|
.loadpath
|
||||||
.recommenders
|
.recommenders
|
||||||
|
|
||||||
# Eclipse Core
|
|
||||||
.project
|
|
||||||
|
|
||||||
# External tool builders
|
# External tool builders
|
||||||
.externalToolBuilders/
|
.externalToolBuilders/
|
||||||
|
|
||||||
|
@ -26,8 +23,8 @@ local.properties
|
||||||
# CDT-specific (C/C++ Development Tooling)
|
# CDT-specific (C/C++ Development Tooling)
|
||||||
.cproject
|
.cproject
|
||||||
|
|
||||||
# JDT-specific (Eclipse Java Development Tools)
|
# CDT- autotools
|
||||||
.classpath
|
.autotools
|
||||||
|
|
||||||
# Java annotation processor (APT)
|
# Java annotation processor (APT)
|
||||||
.factorypath
|
.factorypath
|
||||||
|
@ -50,6 +47,9 @@ local.properties
|
||||||
# Code Recommenders
|
# Code Recommenders
|
||||||
.recommenders/
|
.recommenders/
|
||||||
|
|
||||||
|
# Annotation Processing
|
||||||
|
.apt_generated/
|
||||||
|
|
||||||
# Scala IDE specific (Scala & Java development for Eclipse)
|
# Scala IDE specific (Scala & Java development for Eclipse)
|
||||||
.cache-main
|
.cache-main
|
||||||
.scala_dependencies
|
.scala_dependencies
|
||||||
|
|
|
@ -1,6 +1,9 @@
|
||||||
/_build
|
/_build
|
||||||
/cover
|
/cover
|
||||||
/deps
|
/deps
|
||||||
|
/doc
|
||||||
|
/.fetch
|
||||||
erl_crash.dump
|
erl_crash.dump
|
||||||
*.ez
|
*.ez
|
||||||
*.beam
|
*.beam
|
||||||
|
/config/*.secret.exs
|
||||||
|
|
|
@ -10,3 +10,5 @@ ext/
|
||||||
modern.json
|
modern.json
|
||||||
modern.jsonp
|
modern.jsonp
|
||||||
resources/sass/.sass-cache/
|
resources/sass/.sass-cache/
|
||||||
|
resources/.arch-internal-preview.css
|
||||||
|
.arch-internal-preview.css
|
||||||
|
|
|
@ -0,0 +1,32 @@
|
||||||
|
# Prerequisites
|
||||||
|
*.d
|
||||||
|
|
||||||
|
# Compiled Object files
|
||||||
|
*.slo
|
||||||
|
*.lo
|
||||||
|
*.o
|
||||||
|
*.obj
|
||||||
|
|
||||||
|
# Precompiled Headers
|
||||||
|
*.gch
|
||||||
|
*.pch
|
||||||
|
|
||||||
|
# Compiled Dynamic libraries
|
||||||
|
*.so
|
||||||
|
*.dylib
|
||||||
|
*.dll
|
||||||
|
|
||||||
|
# Fortran module files
|
||||||
|
*.mod
|
||||||
|
*.smod
|
||||||
|
|
||||||
|
# Compiled Static libraries
|
||||||
|
*.lai
|
||||||
|
*.la
|
||||||
|
*.a
|
||||||
|
*.lib
|
||||||
|
|
||||||
|
# Executables
|
||||||
|
*.exe
|
||||||
|
*.out
|
||||||
|
*.app
|
|
@ -18,9 +18,6 @@ war/WEB-INF/classes/
|
||||||
#compilation logs
|
#compilation logs
|
||||||
.gwt/
|
.gwt/
|
||||||
|
|
||||||
#caching for already compiled files
|
|
||||||
gwt-unitCache/
|
|
||||||
|
|
||||||
#gwt junit compilation files
|
#gwt junit compilation files
|
||||||
www-test/
|
www-test/
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
# Binaries for programs and plugins
|
# Binaries for programs and plugins
|
||||||
*.exe
|
*.exe
|
||||||
|
*.exe~
|
||||||
*.dll
|
*.dll
|
||||||
*.so
|
*.so
|
||||||
*.dylib
|
*.dylib
|
||||||
|
@ -9,6 +10,3 @@
|
||||||
|
|
||||||
# Output of the go coverage tool, specifically when used with LiteIDE
|
# Output of the go coverage tool, specifically when used with LiteIDE
|
||||||
*.out
|
*.out
|
||||||
|
|
||||||
# Project-local glide cache, RE: https://github.com/Masterminds/glide/issues/736
|
|
||||||
.glide/
|
|
||||||
|
|
8
options/gitignore/Godot
Normal file
8
options/gitignore/Godot
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
|
||||||
|
# Godot-specific ignores
|
||||||
|
.import/
|
||||||
|
export.cfg
|
||||||
|
export_presets.cfg
|
||||||
|
|
||||||
|
# Mono-specific ignores
|
||||||
|
.mono/
|
|
@ -17,4 +17,6 @@ cabal.sandbox.config
|
||||||
*.eventlog
|
*.eventlog
|
||||||
.stack-work/
|
.stack-work/
|
||||||
cabal.project.local
|
cabal.project.local
|
||||||
|
cabal.project.local~
|
||||||
.HTF/
|
.HTF/
|
||||||
|
.ghc.environment.*
|
||||||
|
|
63
options/gitignore/Images
Normal file
63
options/gitignore/Images
Normal file
|
@ -0,0 +1,63 @@
|
||||||
|
# JPEG
|
||||||
|
*.jpg
|
||||||
|
*.jpeg
|
||||||
|
*.jpe
|
||||||
|
*.jif
|
||||||
|
*.jfif
|
||||||
|
*.jfi
|
||||||
|
|
||||||
|
# JPEG 2000
|
||||||
|
*.jp2
|
||||||
|
*.j2k
|
||||||
|
*.jpf
|
||||||
|
*.jpx
|
||||||
|
*.jpm
|
||||||
|
*.mj2
|
||||||
|
|
||||||
|
# JPEG XR
|
||||||
|
*.jxr
|
||||||
|
*.hdp
|
||||||
|
*.wdp
|
||||||
|
|
||||||
|
# Graphics Interchange Format
|
||||||
|
*.gif
|
||||||
|
|
||||||
|
# RAW
|
||||||
|
*.raw
|
||||||
|
|
||||||
|
# Web P
|
||||||
|
*.webp
|
||||||
|
|
||||||
|
# Portable Network Graphics
|
||||||
|
*.png
|
||||||
|
|
||||||
|
# Animated Portable Network Graphics
|
||||||
|
*.apng
|
||||||
|
|
||||||
|
# Multiple-image Network Graphics
|
||||||
|
*.mng
|
||||||
|
|
||||||
|
# Tagged Image File Format
|
||||||
|
*.tiff
|
||||||
|
*.tif
|
||||||
|
|
||||||
|
# Scalable Vector Graphics
|
||||||
|
*.svg
|
||||||
|
*.svgz
|
||||||
|
|
||||||
|
# Portable Document Format
|
||||||
|
*.pdf
|
||||||
|
|
||||||
|
# X BitMap
|
||||||
|
*.xbm
|
||||||
|
|
||||||
|
# BMP
|
||||||
|
*.bmp
|
||||||
|
*.dib
|
||||||
|
|
||||||
|
# ICO
|
||||||
|
*.ico
|
||||||
|
|
||||||
|
# 3D Images
|
||||||
|
*.3dm
|
||||||
|
*.max
|
5
options/gitignore/JEnv
Normal file
5
options/gitignore/JEnv
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
# JEnv local Java version configuration file
|
||||||
|
.java-version
|
||||||
|
|
||||||
|
# Used by previous versions of JEnv
|
||||||
|
.jenv-version
|
|
@ -13,6 +13,7 @@
|
||||||
# Package Files #
|
# Package Files #
|
||||||
*.jar
|
*.jar
|
||||||
*.war
|
*.war
|
||||||
|
*.nar
|
||||||
*.ear
|
*.ear
|
||||||
*.zip
|
*.zip
|
||||||
*.tar.gz
|
*.tar.gz
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
_site/
|
_site/
|
||||||
.sass-cache/
|
.sass-cache/
|
||||||
|
.jekyll-cache/
|
||||||
.jekyll-metadata
|
.jekyll-metadata
|
||||||
|
|
|
@ -1,34 +1,48 @@
|
||||||
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
|
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
|
||||||
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
|
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
|
||||||
|
|
||||||
# User-specific stuff:
|
# User-specific stuff
|
||||||
.idea/**/workspace.xml
|
.idea/**/workspace.xml
|
||||||
.idea/**/tasks.xml
|
.idea/**/tasks.xml
|
||||||
.idea/dictionaries
|
.idea/**/usage.statistics.xml
|
||||||
|
.idea/**/dictionaries
|
||||||
|
.idea/**/shelf
|
||||||
|
|
||||||
# Sensitive or high-churn files:
|
# Generated files
|
||||||
|
.idea/**/contentModel.xml
|
||||||
|
|
||||||
|
# Sensitive or high-churn files
|
||||||
.idea/**/dataSources/
|
.idea/**/dataSources/
|
||||||
.idea/**/dataSources.ids
|
.idea/**/dataSources.ids
|
||||||
.idea/**/dataSources.xml
|
|
||||||
.idea/**/dataSources.local.xml
|
.idea/**/dataSources.local.xml
|
||||||
.idea/**/sqlDataSources.xml
|
.idea/**/sqlDataSources.xml
|
||||||
.idea/**/dynamic.xml
|
.idea/**/dynamic.xml
|
||||||
.idea/**/uiDesigner.xml
|
.idea/**/uiDesigner.xml
|
||||||
|
.idea/**/dbnavigator.xml
|
||||||
|
|
||||||
# Gradle:
|
# Gradle
|
||||||
.idea/**/gradle.xml
|
.idea/**/gradle.xml
|
||||||
.idea/**/libraries
|
.idea/**/libraries
|
||||||
|
|
||||||
# Mongo Explorer plugin:
|
# Gradle and Maven with auto-import
|
||||||
|
# When using Gradle or Maven with auto-import, you should exclude module files,
|
||||||
|
# since they will be recreated, and may cause churn. Uncomment if using
|
||||||
|
# auto-import.
|
||||||
|
# .idea/modules.xml
|
||||||
|
# .idea/*.iml
|
||||||
|
# .idea/modules
|
||||||
|
|
||||||
|
# CMake
|
||||||
|
cmake-build-*/
|
||||||
|
|
||||||
|
# Mongo Explorer plugin
|
||||||
.idea/**/mongoSettings.xml
|
.idea/**/mongoSettings.xml
|
||||||
|
|
||||||
## File-based project format:
|
# File-based project format
|
||||||
*.iws
|
*.iws
|
||||||
|
|
||||||
## Plugin-specific files:
|
|
||||||
|
|
||||||
# IntelliJ
|
# IntelliJ
|
||||||
/out/
|
out/
|
||||||
|
|
||||||
# mpeltonen/sbt-idea plugin
|
# mpeltonen/sbt-idea plugin
|
||||||
.idea_modules/
|
.idea_modules/
|
||||||
|
@ -44,3 +58,9 @@ com_crashlytics_export_strings.xml
|
||||||
crashlytics.properties
|
crashlytics.properties
|
||||||
crashlytics-build.properties
|
crashlytics-build.properties
|
||||||
fabric.properties
|
fabric.properties
|
||||||
|
|
||||||
|
# Editor-based Rest Client
|
||||||
|
.idea/httpRequests
|
||||||
|
|
||||||
|
# Android studio 3.1+ serialized cache file
|
||||||
|
.idea/caches/build_file_checksums.ser
|
||||||
|
|
|
@ -1,4 +1,3 @@
|
||||||
/.gitignore
|
|
||||||
/.htaccess
|
/.htaccess
|
||||||
/administrator/cache/*
|
/administrator/cache/*
|
||||||
/administrator/components/com_admin/*
|
/administrator/components/com_admin/*
|
||||||
|
@ -251,7 +250,7 @@
|
||||||
/administrator/language/en-GB/en-GB.tpl_hathor.sys.ini
|
/administrator/language/en-GB/en-GB.tpl_hathor.sys.ini
|
||||||
/administrator/language/en-GB/en-GB.xml
|
/administrator/language/en-GB/en-GB.xml
|
||||||
/administrator/language/overrides/*
|
/administrator/language/overrides/*
|
||||||
/administrator/logs/index.html
|
/administrator/logs/*
|
||||||
/administrator/manifests/*
|
/administrator/manifests/*
|
||||||
/administrator/modules/mod_custom/*
|
/administrator/modules/mod_custom/*
|
||||||
/administrator/modules/mod_feed/*
|
/administrator/modules/mod_feed/*
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
# For PCBs designed using KiCad: http://www.kicad-pcb.org/
|
# For PCBs designed using KiCad: http://www.kicad-pcb.org/
|
||||||
|
# Format documentation: http://kicad-pcb.org/help/file-formats/
|
||||||
|
|
||||||
# Temporary files
|
# Temporary files
|
||||||
*.000
|
*.000
|
||||||
|
@ -8,6 +9,9 @@
|
||||||
*~
|
*~
|
||||||
_autosave-*
|
_autosave-*
|
||||||
*.tmp
|
*.tmp
|
||||||
|
*-rescue.lib
|
||||||
|
*-save.pro
|
||||||
|
*-save.kicad_pcb
|
||||||
|
|
||||||
# Netlist files (exported from Eeschema)
|
# Netlist files (exported from Eeschema)
|
||||||
*.net
|
*.net
|
23
options/gitignore/Kotlin
Normal file
23
options/gitignore/Kotlin
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
# Compiled class file
|
||||||
|
*.class
|
||||||
|
|
||||||
|
# Log file
|
||||||
|
*.log
|
||||||
|
|
||||||
|
# BlueJ files
|
||||||
|
*.ctxt
|
||||||
|
|
||||||
|
# Mobile Tools for Java (J2ME)
|
||||||
|
.mtj.tmp/
|
||||||
|
|
||||||
|
# Package Files #
|
||||||
|
*.jar
|
||||||
|
*.war
|
||||||
|
*.nar
|
||||||
|
*.ear
|
||||||
|
*.zip
|
||||||
|
*.tar.gz
|
||||||
|
*.rar
|
||||||
|
|
||||||
|
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
|
||||||
|
hs_err_pid*
|
|
@ -14,3 +14,4 @@
|
||||||
# Metadata
|
# Metadata
|
||||||
*.aliases
|
*.aliases
|
||||||
*.lvlps
|
*.lvlps
|
||||||
|
.cache/
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
vendor/
|
/vendor/
|
||||||
node_modules/
|
node_modules/
|
||||||
npm-debug.log
|
npm-debug.log
|
||||||
|
yarn-error.log
|
||||||
|
|
||||||
# Laravel 4 specific
|
# Laravel 4 specific
|
||||||
bootstrap/compiled.php
|
bootstrap/compiled.php
|
||||||
|
@ -10,11 +11,7 @@ app/storage/
|
||||||
public/storage
|
public/storage
|
||||||
public/hot
|
public/hot
|
||||||
storage/*.key
|
storage/*.key
|
||||||
.env.*.php
|
|
||||||
.env.php
|
|
||||||
.env
|
.env
|
||||||
Homestead.yaml
|
Homestead.yaml
|
||||||
Homestead.json
|
Homestead.json
|
||||||
|
/.vagrant
|
||||||
# Rocketeer PHP task runner and deployment package. https://github.com/rocketeers/rocketeer
|
|
||||||
.rocketeer/
|
|
||||||
|
|
|
@ -11,3 +11,4 @@ pom.xml.asc
|
||||||
.lein-plugins/
|
.lein-plugins/
|
||||||
.lein-failures
|
.lein-failures
|
||||||
.nrepl-port
|
.nrepl-port
|
||||||
|
.cpcache/
|
||||||
|
|
|
@ -2,15 +2,44 @@
|
||||||
# Magento Default Files #
|
# Magento Default Files #
|
||||||
#--------------------------#
|
#--------------------------#
|
||||||
|
|
||||||
|
/PATCH_*.sh
|
||||||
|
|
||||||
/app/etc/local.xml
|
/app/etc/local.xml
|
||||||
|
|
||||||
/media/*
|
/media/*
|
||||||
!/media/.htaccess
|
!/media/.htaccess
|
||||||
|
|
||||||
|
!/media/customer
|
||||||
|
/media/customer/*
|
||||||
!/media/customer/.htaccess
|
!/media/customer/.htaccess
|
||||||
|
|
||||||
|
!/media/dhl
|
||||||
|
/media/dhl/*
|
||||||
!/media/dhl/logo.jpg
|
!/media/dhl/logo.jpg
|
||||||
|
|
||||||
|
!/media/downloadable
|
||||||
|
/media/downloadable/*
|
||||||
!/media/downloadable/.htaccess
|
!/media/downloadable/.htaccess
|
||||||
|
|
||||||
|
!/media/xmlconnect
|
||||||
|
/media/xmlconnect/*
|
||||||
|
|
||||||
|
!/media/xmlconnect/custom
|
||||||
|
/media/xmlconnect/custom/*
|
||||||
!/media/xmlconnect/custom/ok.gif
|
!/media/xmlconnect/custom/ok.gif
|
||||||
|
|
||||||
|
!/media/xmlconnect/original
|
||||||
|
/media/xmlconnect/original/*
|
||||||
!/media/xmlconnect/original/ok.gif
|
!/media/xmlconnect/original/ok.gif
|
||||||
|
|
||||||
|
!/media/xmlconnect/system
|
||||||
|
/media/xmlconnect/system/*
|
||||||
!/media/xmlconnect/system/ok.gif
|
!/media/xmlconnect/system/ok.gif
|
||||||
|
|
||||||
/var/*
|
/var/*
|
||||||
!/var/.htaccess
|
!/var/.htaccess
|
||||||
|
|
||||||
|
!/var/package
|
||||||
|
/var/package/*
|
||||||
!/var/package/*.xml
|
!/var/package/*.xml
|
||||||
|
|
||||||
|
|
|
@ -1,8 +1,3 @@
|
||||||
##---------------------------------------------------
|
|
||||||
## Remove autosaves generated by the Matlab editor
|
|
||||||
## We have git for backups!
|
|
||||||
##---------------------------------------------------
|
|
||||||
|
|
||||||
# Windows default autosave extension
|
# Windows default autosave extension
|
||||||
*.asv
|
*.asv
|
||||||
|
|
||||||
|
@ -12,11 +7,22 @@
|
||||||
# Compiled MEX binaries (all platforms)
|
# Compiled MEX binaries (all platforms)
|
||||||
*.mex*
|
*.mex*
|
||||||
|
|
||||||
# Simulink Code Generation
|
# Packaged app and toolbox files
|
||||||
slprj/
|
*.mlappinstall
|
||||||
|
*.mltbx
|
||||||
|
|
||||||
# Session info
|
# Generated helpsearch folders
|
||||||
octave-workspace
|
helpsearch*/
|
||||||
|
|
||||||
|
# Simulink code generation folders
|
||||||
|
slprj/
|
||||||
|
sccprj/
|
||||||
|
|
||||||
|
# Matlab code generation folders
|
||||||
|
codegen/
|
||||||
|
|
||||||
# Simulink autosave extension
|
# Simulink autosave extension
|
||||||
.autosave
|
*.autosave
|
||||||
|
|
||||||
|
# Octave session info
|
||||||
|
octave-workspace
|
||||||
|
|
|
@ -7,6 +7,4 @@ release.properties
|
||||||
dependency-reduced-pom.xml
|
dependency-reduced-pom.xml
|
||||||
buildNumber.properties
|
buildNumber.properties
|
||||||
.mvn/timing.properties
|
.mvn/timing.properties
|
||||||
|
.mvn/wrapper/maven-wrapper.jar
|
||||||
# Avoid ignoring Maven wrapper jar file (.jar files are usually ignored)
|
|
||||||
!/.mvn/wrapper/maven-wrapper.jar
|
|
||||||
|
|
|
@ -3,6 +3,9 @@
|
||||||
# Word temporary
|
# Word temporary
|
||||||
~$*.doc*
|
~$*.doc*
|
||||||
|
|
||||||
|
# Word Auto Backup File
|
||||||
|
Backup of *.doc*
|
||||||
|
|
||||||
# Excel temporary
|
# Excel temporary
|
||||||
~$*.xls*
|
~$*.xls*
|
||||||
|
|
||||||
|
@ -13,4 +16,4 @@
|
||||||
~$*.ppt*
|
~$*.ppt*
|
||||||
|
|
||||||
# Visio autosave temporary files
|
# Visio autosave temporary files
|
||||||
*.~vsdx
|
*.~vsd*
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
output/
|
output/
|
||||||
|
|
||||||
# Temporary file directory
|
# Temporary file directory
|
||||||
tmp/
|
tmp/nanoc/
|
||||||
|
|
||||||
# Crash Log
|
# Crash Log
|
||||||
crash.log
|
crash.log
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
nbproject/private/
|
**/nbproject/private/
|
||||||
build/
|
build/
|
||||||
nbbuild/
|
nbbuild/
|
||||||
dist/
|
dist/
|
||||||
|
|
|
@ -20,7 +20,7 @@ coverage
|
||||||
# nyc test coverage
|
# nyc test coverage
|
||||||
.nyc_output
|
.nyc_output
|
||||||
|
|
||||||
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
|
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
|
||||||
.grunt
|
.grunt
|
||||||
|
|
||||||
# Bower dependency directory (https://bower.io/)
|
# Bower dependency directory (https://bower.io/)
|
||||||
|
@ -29,14 +29,14 @@ bower_components
|
||||||
# node-waf configuration
|
# node-waf configuration
|
||||||
.lock-wscript
|
.lock-wscript
|
||||||
|
|
||||||
# Compiled binary addons (http://nodejs.org/api/addons.html)
|
# Compiled binary addons (https://nodejs.org/api/addons.html)
|
||||||
build/Release
|
build/Release
|
||||||
|
|
||||||
# Dependency directories
|
# Dependency directories
|
||||||
node_modules/
|
node_modules/
|
||||||
jspm_packages/
|
jspm_packages/
|
||||||
|
|
||||||
# Typescript v1 declaration files
|
# TypeScript v1 declaration files
|
||||||
typings/
|
typings/
|
||||||
|
|
||||||
# Optional npm cache directory
|
# Optional npm cache directory
|
||||||
|
@ -57,3 +57,20 @@ typings/
|
||||||
# dotenv environment variables file
|
# dotenv environment variables file
|
||||||
.env
|
.env
|
||||||
|
|
||||||
|
# parcel-bundler cache (https://parceljs.org/)
|
||||||
|
.cache
|
||||||
|
|
||||||
|
# next.js build output
|
||||||
|
.next
|
||||||
|
|
||||||
|
# nuxt.js build output
|
||||||
|
.nuxt
|
||||||
|
|
||||||
|
# vuepress build output
|
||||||
|
.vuepress/dist
|
||||||
|
|
||||||
|
# Serverless directories
|
||||||
|
.serverless
|
||||||
|
|
||||||
|
# FuseBox cache
|
||||||
|
.fusebox/
|
||||||
|
|
|
@ -18,3 +18,6 @@ _build/
|
||||||
# oasis generated files
|
# oasis generated files
|
||||||
setup.data
|
setup.data
|
||||||
setup.log
|
setup.log
|
||||||
|
|
||||||
|
# Merlin configuring file for Vim and Emacs
|
||||||
|
.merlin
|
||||||
|
|
|
@ -35,6 +35,9 @@ xcuserdata/
|
||||||
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
|
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
|
||||||
#
|
#
|
||||||
# Pods/
|
# Pods/
|
||||||
|
#
|
||||||
|
# Add this line if you want to avoid checking in source code from the Xcode workspace
|
||||||
|
# *.xcworkspace
|
||||||
|
|
||||||
# Carthage
|
# Carthage
|
||||||
#
|
#
|
||||||
|
@ -52,7 +55,7 @@ Carthage/Build
|
||||||
|
|
||||||
fastlane/report.xml
|
fastlane/report.xml
|
||||||
fastlane/Preview.html
|
fastlane/Preview.html
|
||||||
fastlane/screenshots
|
fastlane/screenshots/**/*.png
|
||||||
fastlane/test_output
|
fastlane/test_output
|
||||||
|
|
||||||
# Code Injection
|
# Code Injection
|
||||||
|
|
18
options/gitignore/PSoCCreator
Normal file
18
options/gitignore/PSoCCreator
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
# Project Settings
|
||||||
|
*.cywrk.*
|
||||||
|
*.cyprj.*
|
||||||
|
|
||||||
|
# Generated Assets and Resources
|
||||||
|
Debug/
|
||||||
|
Release/
|
||||||
|
Export/
|
||||||
|
*/codegentemp
|
||||||
|
*/Generated_Source
|
||||||
|
*_datasheet.pdf
|
||||||
|
*_timing.html
|
||||||
|
*.cycdx
|
||||||
|
*.cyfit
|
||||||
|
*.rpt
|
||||||
|
*.svd
|
||||||
|
*.log
|
||||||
|
*.zip
|
2
options/gitignore/Patch
Normal file
2
options/gitignore/Patch
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
*.orig
|
||||||
|
*.rej
|
|
@ -24,7 +24,7 @@ Build.bat
|
||||||
# Module::Install
|
# Module::Install
|
||||||
inc/
|
inc/
|
||||||
|
|
||||||
# ExtUitls::MakeMaker
|
# ExtUtils::MakeMaker
|
||||||
/blib/
|
/blib/
|
||||||
/_eumm/
|
/_eumm/
|
||||||
/*.gz
|
/*.gz
|
||||||
|
|
7
options/gitignore/Perl6
Normal file
7
options/gitignore/Perl6
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
# Gitignore for Perl 6 (http://www.perl6.org)
|
||||||
|
# As part of https://github.com/github/gitignore
|
||||||
|
|
||||||
|
# precompiled files
|
||||||
|
.precomp
|
||||||
|
lib/.precomp
|
||||||
|
|
|
@ -7,8 +7,10 @@ config/settings.*.php
|
||||||
# The following files are generated by PrestaShop.
|
# The following files are generated by PrestaShop.
|
||||||
|
|
||||||
admin-dev/autoupgrade/
|
admin-dev/autoupgrade/
|
||||||
/cache/
|
/cache/*
|
||||||
!/cache/index.php
|
!/cache/index.php
|
||||||
|
!/cache/*/
|
||||||
|
/cache/*/*
|
||||||
!/cache/cachefs/index.php
|
!/cache/cachefs/index.php
|
||||||
!/cache/purifier/index.php
|
!/cache/purifier/index.php
|
||||||
!/cache/push/index.php
|
!/cache/push/index.php
|
||||||
|
|
|
@ -1,5 +1,7 @@
|
||||||
.DS_Store
|
.DS_Store
|
||||||
applet
|
applet
|
||||||
|
application.linux-arm64
|
||||||
|
application.linux-armv6hf
|
||||||
application.linux32
|
application.linux32
|
||||||
application.linux64
|
application.linux64
|
||||||
application.windows32
|
application.windows32
|
||||||
|
|
|
@ -8,7 +8,6 @@ __pycache__/
|
||||||
|
|
||||||
# Distribution / packaging
|
# Distribution / packaging
|
||||||
.Python
|
.Python
|
||||||
env/
|
|
||||||
build/
|
build/
|
||||||
develop-eggs/
|
develop-eggs/
|
||||||
dist/
|
dist/
|
||||||
|
@ -24,6 +23,7 @@ wheels/
|
||||||
*.egg-info/
|
*.egg-info/
|
||||||
.installed.cfg
|
.installed.cfg
|
||||||
*.egg
|
*.egg
|
||||||
|
MANIFEST
|
||||||
|
|
||||||
# PyInstaller
|
# PyInstaller
|
||||||
# Usually these files are written by a python script from a template
|
# Usually these files are written by a python script from a template
|
||||||
|
@ -38,13 +38,15 @@ pip-delete-this-directory.txt
|
||||||
# Unit test / coverage reports
|
# Unit test / coverage reports
|
||||||
htmlcov/
|
htmlcov/
|
||||||
.tox/
|
.tox/
|
||||||
|
.nox/
|
||||||
.coverage
|
.coverage
|
||||||
.coverage.*
|
.coverage.*
|
||||||
.cache
|
.cache
|
||||||
nosetests.xml
|
nosetests.xml
|
||||||
coverage.xml
|
coverage.xml
|
||||||
*,cover
|
*.cover
|
||||||
.hypothesis/
|
.hypothesis/
|
||||||
|
.pytest_cache/
|
||||||
|
|
||||||
# Translations
|
# Translations
|
||||||
*.mo
|
*.mo
|
||||||
|
@ -53,6 +55,7 @@ coverage.xml
|
||||||
# Django stuff:
|
# Django stuff:
|
||||||
*.log
|
*.log
|
||||||
local_settings.py
|
local_settings.py
|
||||||
|
db.sqlite3
|
||||||
|
|
||||||
# Flask stuff:
|
# Flask stuff:
|
||||||
instance/
|
instance/
|
||||||
|
@ -70,6 +73,10 @@ target/
|
||||||
# Jupyter Notebook
|
# Jupyter Notebook
|
||||||
.ipynb_checkpoints
|
.ipynb_checkpoints
|
||||||
|
|
||||||
|
# IPython
|
||||||
|
profile_default/
|
||||||
|
ipython_config.py
|
||||||
|
|
||||||
# pyenv
|
# pyenv
|
||||||
.python-version
|
.python-version
|
||||||
|
|
||||||
|
@ -79,16 +86,29 @@ celerybeat-schedule
|
||||||
# SageMath parsed files
|
# SageMath parsed files
|
||||||
*.sage.py
|
*.sage.py
|
||||||
|
|
||||||
# dotenv
|
# Environments
|
||||||
.env
|
.env
|
||||||
|
|
||||||
# virtualenv
|
|
||||||
.venv
|
.venv
|
||||||
|
env/
|
||||||
venv/
|
venv/
|
||||||
ENV/
|
ENV/
|
||||||
|
env.bak/
|
||||||
|
venv.bak/
|
||||||
|
|
||||||
# Spyder project settings
|
# Spyder project settings
|
||||||
.spyderproject
|
.spyderproject
|
||||||
|
.spyproject
|
||||||
|
|
||||||
# Rope project settings
|
# Rope project settings
|
||||||
.ropeproject
|
.ropeproject
|
||||||
|
|
||||||
|
# mkdocs documentation
|
||||||
|
/site
|
||||||
|
|
||||||
|
# mypy
|
||||||
|
.mypy_cache/
|
||||||
|
.dmypy.json
|
||||||
|
dmypy.json
|
||||||
|
|
||||||
|
# Pyre type checker
|
||||||
|
.pyre/
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
# C++ objects and libs
|
# C++ objects and libs
|
||||||
|
|
||||||
*.slo
|
*.slo
|
||||||
*.lo
|
*.lo
|
||||||
*.o
|
*.o
|
||||||
|
@ -11,7 +10,9 @@
|
||||||
*.dylib
|
*.dylib
|
||||||
|
|
||||||
# Qt-es
|
# Qt-es
|
||||||
|
object_script.*.Release
|
||||||
|
object_script.*.Debug
|
||||||
|
*_plugin_import.cpp
|
||||||
/.qmake.cache
|
/.qmake.cache
|
||||||
/.qmake.stash
|
/.qmake.stash
|
||||||
*.pro.user
|
*.pro.user
|
||||||
|
@ -20,19 +21,23 @@
|
||||||
*.qbs.user.*
|
*.qbs.user.*
|
||||||
*.moc
|
*.moc
|
||||||
moc_*.cpp
|
moc_*.cpp
|
||||||
|
moc_*.h
|
||||||
qrc_*.cpp
|
qrc_*.cpp
|
||||||
ui_*.h
|
ui_*.h
|
||||||
|
*.qmlc
|
||||||
|
*.jsc
|
||||||
Makefile*
|
Makefile*
|
||||||
*build-*
|
*build-*
|
||||||
|
|
||||||
# QtCreator
|
# Qt unit tests
|
||||||
|
target_wrapper.*
|
||||||
|
|
||||||
|
# QtCreator
|
||||||
*.autosave
|
*.autosave
|
||||||
|
|
||||||
# QtCtreator Qml
|
# QtCreator Qml
|
||||||
*.qmlproject.user
|
*.qmlproject.user
|
||||||
*.qmlproject.user.*
|
*.qmlproject.user.*
|
||||||
|
|
||||||
# QtCtreator CMake
|
# QtCreator CMake
|
||||||
CMakeLists.txt.user*
|
CMakeLists.txt.user*
|
||||||
|
|
||||||
|
|
|
@ -31,3 +31,6 @@ vignettes/*.pdf
|
||||||
# Temporary files created by R markdown
|
# Temporary files created by R markdown
|
||||||
*.utf8.md
|
*.utf8.md
|
||||||
*.knit.md
|
*.knit.md
|
||||||
|
|
||||||
|
# Shiny token, see https://shiny.rstudio.com/articles/shinyapps.html
|
||||||
|
rsconnect/
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
devel/
|
||||||
|
logs/
|
||||||
build/
|
build/
|
||||||
bin/
|
bin/
|
||||||
lib/
|
lib/
|
||||||
|
@ -11,6 +13,8 @@ msg/*Feedback.msg
|
||||||
msg/*Goal.msg
|
msg/*Goal.msg
|
||||||
msg/*Result.msg
|
msg/*Result.msg
|
||||||
msg/_*.py
|
msg/_*.py
|
||||||
|
build_isolated/
|
||||||
|
devel_isolated/
|
||||||
|
|
||||||
# Generated by dynamic reconfigure
|
# Generated by dynamic reconfigure
|
||||||
*.cfgc
|
*.cfgc
|
||||||
|
|
|
@ -8,12 +8,13 @@ capybara-*.html
|
||||||
/public/system
|
/public/system
|
||||||
/coverage/
|
/coverage/
|
||||||
/spec/tmp
|
/spec/tmp
|
||||||
**.orig
|
*.orig
|
||||||
rerun.txt
|
rerun.txt
|
||||||
pickle-email-*.html
|
pickle-email-*.html
|
||||||
|
|
||||||
# TODO Comment out this rule if you are OK with secrets being uploaded to the repo
|
# TODO Comment out this rule if you are OK with secrets being uploaded to the repo
|
||||||
config/initializers/secret_token.rb
|
config/initializers/secret_token.rb
|
||||||
|
config/master.key
|
||||||
|
|
||||||
# Only include if you have production secrets in this file, which is no longer a Rails default
|
# Only include if you have production secrets in this file, which is no longer a Rails default
|
||||||
# config/secrets.yml
|
# config/secrets.yml
|
||||||
|
@ -42,3 +43,20 @@ bower.json
|
||||||
|
|
||||||
# Ignore Byebug command history file.
|
# Ignore Byebug command history file.
|
||||||
.byebug_history
|
.byebug_history
|
||||||
|
|
||||||
|
# Ignore node_modules
|
||||||
|
node_modules/
|
||||||
|
|
||||||
|
# Ignore precompiled javascript packs
|
||||||
|
/public/packs
|
||||||
|
/public/packs-test
|
||||||
|
/public/assets
|
||||||
|
|
||||||
|
# Ignore yarn files
|
||||||
|
/yarn-error.log
|
||||||
|
yarn-debug.log*
|
||||||
|
.yarn-integrity
|
||||||
|
|
||||||
|
# Ignore uploaded files in development
|
||||||
|
/storage/*
|
||||||
|
!/storage/.keep
|
|
@ -3,7 +3,7 @@
|
||||||
/target/
|
/target/
|
||||||
|
|
||||||
# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries
|
# 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
|
# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html
|
||||||
Cargo.lock
|
Cargo.lock
|
||||||
|
|
||||||
# These are backup files generated by rustfmt
|
# These are backup files generated by rustfmt
|
||||||
|
|
|
@ -1,2 +1,4 @@
|
||||||
.sass-cache/
|
.sass-cache/
|
||||||
*.css.map
|
*.css.map
|
||||||
|
*.sass.map
|
||||||
|
*.scss.map
|
||||||
|
|
|
@ -13,6 +13,10 @@ SqueakDebug.log
|
||||||
# Monticello package cache
|
# Monticello package cache
|
||||||
/package-cache
|
/package-cache
|
||||||
|
|
||||||
|
# playground cache
|
||||||
|
/play-cache
|
||||||
|
/play-stash
|
||||||
|
|
||||||
# Metacello-github cache
|
# Metacello-github cache
|
||||||
/github-cache
|
/github-cache
|
||||||
github-*.zip
|
github-*.zip
|
||||||
|
|
|
@ -1,16 +1,16 @@
|
||||||
# cache files for sublime text
|
# Cache files for Sublime Text
|
||||||
*.tmlanguage.cache
|
*.tmlanguage.cache
|
||||||
*.tmPreferences.cache
|
*.tmPreferences.cache
|
||||||
*.stTheme.cache
|
*.stTheme.cache
|
||||||
|
|
||||||
# workspace files are user-specific
|
# Workspace files are user-specific
|
||||||
*.sublime-workspace
|
*.sublime-workspace
|
||||||
|
|
||||||
# project files should be checked into the repository, unless a significant
|
# Project files should be checked into the repository, unless a significant
|
||||||
# proportion of contributors will probably not be using Sublime Text
|
# proportion of contributors will probably not be using Sublime Text
|
||||||
# *.sublime-project
|
# *.sublime-project
|
||||||
|
|
||||||
# sftp configuration file
|
# SFTP configuration file
|
||||||
sftp-config.json
|
sftp-config.json
|
||||||
|
|
||||||
# Package control specific files
|
# Package control specific files
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
# the misuse of the repository as backup replacement.
|
# the misuse of the repository as backup replacement.
|
||||||
# For development the cache directory can be safely ignored and
|
# For development the cache directory can be safely ignored and
|
||||||
# therefore it is ignored.
|
# therefore it is ignored.
|
||||||
/cache/
|
/cache/*
|
||||||
!/cache/index.html
|
!/cache/index.html
|
||||||
# Ignore some files and directories from the custom directory.
|
# Ignore some files and directories from the custom directory.
|
||||||
/custom/history/
|
/custom/history/
|
||||||
|
@ -22,6 +22,6 @@
|
||||||
# Logs files can safely be ignored.
|
# Logs files can safely be ignored.
|
||||||
*.log
|
*.log
|
||||||
# Ignore the new upload directories.
|
# Ignore the new upload directories.
|
||||||
/upload/
|
/upload/*
|
||||||
!/upload/index.html
|
!/upload/index.html
|
||||||
/upload_backup/
|
/upload_backup/
|
||||||
|
|
|
@ -37,6 +37,7 @@ playground.xcworkspace
|
||||||
# Add this line if you want to avoid checking in source code from Swift Package Manager dependencies.
|
# Add this line if you want to avoid checking in source code from Swift Package Manager dependencies.
|
||||||
# Packages/
|
# Packages/
|
||||||
# Package.pins
|
# Package.pins
|
||||||
|
# Package.resolved
|
||||||
.build/
|
.build/
|
||||||
|
|
||||||
# CocoaPods
|
# CocoaPods
|
||||||
|
@ -46,6 +47,9 @@ playground.xcworkspace
|
||||||
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
|
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
|
||||||
#
|
#
|
||||||
# Pods/
|
# Pods/
|
||||||
|
#
|
||||||
|
# Add this line if you want to avoid checking in source code from the Xcode workspace
|
||||||
|
# *.xcworkspace
|
||||||
|
|
||||||
# Carthage
|
# Carthage
|
||||||
#
|
#
|
||||||
|
@ -63,5 +67,12 @@ Carthage/Build
|
||||||
|
|
||||||
fastlane/report.xml
|
fastlane/report.xml
|
||||||
fastlane/Preview.html
|
fastlane/Preview.html
|
||||||
fastlane/screenshots
|
fastlane/screenshots/**/*.png
|
||||||
fastlane/test_output
|
fastlane/test_output
|
||||||
|
|
||||||
|
# Code Injection
|
||||||
|
#
|
||||||
|
# After new code Injection tools there's a generated folder /iOSInjectionProject
|
||||||
|
# https://github.com/johnno1962/injectionforxcode
|
||||||
|
|
||||||
|
iOSInjectionProject/
|
||||||
|
|
|
@ -15,6 +15,10 @@
|
||||||
!var/logs/.gitkeep
|
!var/logs/.gitkeep
|
||||||
!var/sessions/.gitkeep
|
!var/sessions/.gitkeep
|
||||||
|
|
||||||
|
# Logs (Symfony4)
|
||||||
|
/var/log/*
|
||||||
|
!var/log/.gitkeep
|
||||||
|
|
||||||
# Parameters
|
# Parameters
|
||||||
/app/config/parameters.yml
|
/app/config/parameters.yml
|
||||||
/app/config/parameters.ini
|
/app/config/parameters.ini
|
||||||
|
@ -25,6 +29,7 @@
|
||||||
/bin/*
|
/bin/*
|
||||||
!bin/console
|
!bin/console
|
||||||
!bin/symfony_requirements
|
!bin/symfony_requirements
|
||||||
|
/vendor/
|
||||||
|
|
||||||
# Assets and user uploads
|
# Assets and user uploads
|
||||||
/web/bundles/
|
/web/bundles/
|
||||||
|
@ -37,5 +42,11 @@
|
||||||
# Build data
|
# Build data
|
||||||
/build/
|
/build/
|
||||||
|
|
||||||
|
# Composer PHAR
|
||||||
|
/composer.phar
|
||||||
|
|
||||||
# Backup entities generated with doctrine:generate:entities command
|
# Backup entities generated with doctrine:generate:entities command
|
||||||
**/Entity/*~
|
**/Entity/*~
|
||||||
|
|
||||||
|
# Embedded web-server pid file
|
||||||
|
/.web-server-pid
|
||||||
|
|
|
@ -10,9 +10,11 @@
|
||||||
*.fot
|
*.fot
|
||||||
*.cb
|
*.cb
|
||||||
*.cb2
|
*.cb2
|
||||||
|
.*.lb
|
||||||
|
|
||||||
## Intermediate documents:
|
## Intermediate documents:
|
||||||
*.dvi
|
*.dvi
|
||||||
|
*.xdv
|
||||||
*-converted-to.*
|
*-converted-to.*
|
||||||
# these rules might exclude image files for figures etc.
|
# these rules might exclude image files for figures etc.
|
||||||
# *.ps
|
# *.ps
|
||||||
|
@ -38,6 +40,10 @@
|
||||||
*.synctex.gz(busy)
|
*.synctex.gz(busy)
|
||||||
*.pdfsync
|
*.pdfsync
|
||||||
|
|
||||||
|
## Build tool directories for auxiliary files
|
||||||
|
# latexrun
|
||||||
|
latex.out/
|
||||||
|
|
||||||
## Auxiliary and intermediate files from other packages:
|
## Auxiliary and intermediate files from other packages:
|
||||||
# algorithms
|
# algorithms
|
||||||
*.alg
|
*.alg
|
||||||
|
@ -58,6 +64,9 @@ acs-*.bib
|
||||||
# changes
|
# changes
|
||||||
*.soc
|
*.soc
|
||||||
|
|
||||||
|
# comment
|
||||||
|
*.cut
|
||||||
|
|
||||||
# cprotect
|
# cprotect
|
||||||
*.cpt
|
*.cpt
|
||||||
|
|
||||||
|
@ -108,6 +117,14 @@ acs-*.bib
|
||||||
*.gaux
|
*.gaux
|
||||||
*.gtex
|
*.gtex
|
||||||
|
|
||||||
|
# htlatex
|
||||||
|
*.4ct
|
||||||
|
*.4tc
|
||||||
|
*.idv
|
||||||
|
*.lg
|
||||||
|
*.trc
|
||||||
|
*.xref
|
||||||
|
|
||||||
# hyperref
|
# hyperref
|
||||||
*.brf
|
*.brf
|
||||||
|
|
||||||
|
@ -143,11 +160,16 @@ _minted*
|
||||||
*.mw
|
*.mw
|
||||||
|
|
||||||
# nomencl
|
# nomencl
|
||||||
|
*.nlg
|
||||||
*.nlo
|
*.nlo
|
||||||
|
*.nls
|
||||||
|
|
||||||
# pax
|
# pax
|
||||||
*.pax
|
*.pax
|
||||||
|
|
||||||
|
# pdfpcnotes
|
||||||
|
*.pdfpc
|
||||||
|
|
||||||
# sagetex
|
# sagetex
|
||||||
*.sagetex.sage
|
*.sagetex.sage
|
||||||
*.sagetex.py
|
*.sagetex.py
|
||||||
|
@ -169,6 +191,9 @@ sympy-plots-for-*.tex/
|
||||||
*.pytxcode
|
*.pytxcode
|
||||||
pythontex-files-*/
|
pythontex-files-*/
|
||||||
|
|
||||||
|
# tcolorbox
|
||||||
|
*.listing
|
||||||
|
|
||||||
# thmtools
|
# thmtools
|
||||||
*.loe
|
*.loe
|
||||||
|
|
||||||
|
@ -183,6 +208,12 @@ pythontex-files-*/
|
||||||
# easy-todo
|
# easy-todo
|
||||||
*.lod
|
*.lod
|
||||||
|
|
||||||
|
# xcolor
|
||||||
|
*.xcp
|
||||||
|
|
||||||
|
# xmpincl
|
||||||
|
*.xmpi
|
||||||
|
|
||||||
# xindy
|
# xindy
|
||||||
*.xdy
|
*.xdy
|
||||||
|
|
||||||
|
@ -204,6 +235,9 @@ TSWLatexianTemp*
|
||||||
# Texpad
|
# Texpad
|
||||||
.texpadtmp
|
.texpadtmp
|
||||||
|
|
||||||
|
# LyX
|
||||||
|
*.lyx~
|
||||||
|
|
||||||
# Kile
|
# Kile
|
||||||
*.backup
|
*.backup
|
||||||
|
|
||||||
|
@ -211,7 +245,11 @@ TSWLatexianTemp*
|
||||||
*~[0-9]*
|
*~[0-9]*
|
||||||
|
|
||||||
# auto folder when using emacs and auctex
|
# auto folder when using emacs and auctex
|
||||||
/auto/*
|
./auto/*
|
||||||
|
*.el
|
||||||
|
|
||||||
# expex forward references with \gathertags
|
# expex forward references with \gathertags
|
||||||
*-tags.tex
|
*-tags.tex
|
||||||
|
|
||||||
|
# standalone packages
|
||||||
|
*.sta
|
||||||
|
|
|
@ -1,6 +1,26 @@
|
||||||
# Compiled files
|
# Local .terraform directories
|
||||||
*.tfstate
|
**/.terraform/*
|
||||||
*.tfstate.backup
|
|
||||||
|
|
||||||
# Module directory
|
# .tfstate files
|
||||||
.terraform/
|
*.tfstate
|
||||||
|
*.tfstate.*
|
||||||
|
|
||||||
|
# Crash log files
|
||||||
|
crash.log
|
||||||
|
|
||||||
|
# Ignore any .tfvars files that are generated automatically for each Terraform run. Most
|
||||||
|
# .tfvars files are managed as part of configuration and so should be included in
|
||||||
|
# version control.
|
||||||
|
#
|
||||||
|
# example.tfvars
|
||||||
|
|
||||||
|
# Ignore override files as they are usually used to override resources locally and so
|
||||||
|
# are not checked in
|
||||||
|
override.tf
|
||||||
|
override.tf.json
|
||||||
|
*_override.tf
|
||||||
|
*_override.tf.json
|
||||||
|
|
||||||
|
# Include override files you do wish to add to version control using negated pattern
|
||||||
|
#
|
||||||
|
# !example_override.tf
|
||||||
|
|
|
@ -8,12 +8,15 @@
|
||||||
/typo3conf/temp_CACHED*
|
/typo3conf/temp_CACHED*
|
||||||
/typo3conf/temp_fieldInfo.php
|
/typo3conf/temp_fieldInfo.php
|
||||||
/typo3conf/deprecation_*.log
|
/typo3conf/deprecation_*.log
|
||||||
/typo3conf/AdditionalConfiguration.php
|
/typo3conf/ENABLE_INSTALL_TOOL
|
||||||
|
/typo3conf/realurl_autoconf.php
|
||||||
|
/FIRST_INSTALL
|
||||||
# Ignore system folders, you should have them symlinked.
|
# Ignore system folders, you should have them symlinked.
|
||||||
# If not comment out the following entries.
|
# If not comment out the following entries.
|
||||||
/typo3
|
/typo3
|
||||||
/typo3_src
|
/typo3_src
|
||||||
/typo3_src-*
|
/typo3_src-*
|
||||||
|
/Packages
|
||||||
/.htaccess
|
/.htaccess
|
||||||
/index.php
|
/index.php
|
||||||
# Ignore temp directory.
|
# Ignore temp directory.
|
||||||
|
|
|
@ -1,3 +1,7 @@
|
||||||
|
## Ignore Umbraco files/folders generated for each instance
|
||||||
|
##
|
||||||
|
## Get latest from https://github.com/github/gitignore/blob/master/Umbraco.gitignore
|
||||||
|
|
||||||
# Note: VisualStudio gitignore rules may also be relevant
|
# Note: VisualStudio gitignore rules may also be relevant
|
||||||
|
|
||||||
# Umbraco
|
# Umbraco
|
||||||
|
@ -12,8 +16,11 @@
|
||||||
|
|
||||||
# Don't ignore Umbraco packages (VisualStudio.gitignore mistakes this for a NuGet packages folder)
|
# Don't ignore Umbraco packages (VisualStudio.gitignore mistakes this for a NuGet packages folder)
|
||||||
# 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
|
# ImageProcessor DiskCache
|
||||||
**/App_Data/cache/
|
**/App_Data/cache/
|
||||||
|
|
||||||
|
# Ignore the Models Builder models out of date flag
|
||||||
|
**/App_Data/Models/ood.flag
|
||||||
|
|
|
@ -1,12 +1,12 @@
|
||||||
/[Ll]ibrary/
|
[Ll]ibrary/
|
||||||
/[Tt]emp/
|
[Tt]emp/
|
||||||
/[Oo]bj/
|
[Oo]bj/
|
||||||
/[Bb]uild/
|
[Bb]uild/
|
||||||
/[Bb]uilds/
|
[Bb]uilds/
|
||||||
/Assets/AssetStoreTools*
|
Assets/AssetStoreTools*
|
||||||
|
|
||||||
# Visual Studio 2015 cache directory
|
# Visual Studio cache directory
|
||||||
/.vs/
|
.vs/
|
||||||
|
|
||||||
# Autogenerated VS/MD/Consulo solution and project files
|
# Autogenerated VS/MD/Consulo solution and project files
|
||||||
ExportedObj/
|
ExportedObj/
|
||||||
|
@ -22,9 +22,12 @@ ExportedObj/
|
||||||
*.booproj
|
*.booproj
|
||||||
*.svd
|
*.svd
|
||||||
*.pdb
|
*.pdb
|
||||||
|
*.opendb
|
||||||
|
*.VC.db
|
||||||
|
|
||||||
# Unity3D generated meta files
|
# Unity3D generated meta files
|
||||||
*.pidb.meta
|
*.pidb.meta
|
||||||
|
*.pdb.meta
|
||||||
|
|
||||||
# Unity3D Generated File On Crash Reports
|
# Unity3D Generated File On Crash Reports
|
||||||
sysinfo.txt
|
sysinfo.txt
|
||||||
|
|
|
@ -1,9 +1,6 @@
|
||||||
# Visual Studio 2015 user specific files
|
# Visual Studio 2015 user specific files
|
||||||
.vs/
|
.vs/
|
||||||
|
|
||||||
# Visual Studio 2015 database file
|
|
||||||
*.VC.db
|
|
||||||
|
|
||||||
# Compiled Object files
|
# Compiled Object files
|
||||||
*.slo
|
*.slo
|
||||||
*.lo
|
*.lo
|
||||||
|
@ -50,10 +47,16 @@ SourceArt/**/*.tga
|
||||||
|
|
||||||
# Binary Files
|
# Binary Files
|
||||||
Binaries/*
|
Binaries/*
|
||||||
|
Plugins/*/Binaries/*
|
||||||
|
|
||||||
# Builds
|
# Builds
|
||||||
Build/*
|
Build/*
|
||||||
|
|
||||||
|
# Whitelist PakBlacklist-<BuildConfiguration>.txt files
|
||||||
|
!Build/*/
|
||||||
|
Build/*/**
|
||||||
|
!Build/*/PakBlacklist*.txt
|
||||||
|
|
||||||
# Don't ignore icon files in Build
|
# Don't ignore icon files in Build
|
||||||
!Build/**/*.ico
|
!Build/**/*.ico
|
||||||
|
|
||||||
|
@ -65,6 +68,7 @@ Saved/*
|
||||||
|
|
||||||
# Compiled source files for the engine to use
|
# Compiled source files for the engine to use
|
||||||
Intermediate/*
|
Intermediate/*
|
||||||
|
Plugins/*/Intermediate/*
|
||||||
|
|
||||||
# Cache files for the editor to use
|
# Cache files for the editor to use
|
||||||
DerivedDataCache/*
|
DerivedDataCache/*
|
||||||
|
|
|
@ -1 +1,5 @@
|
||||||
|
# General
|
||||||
.vagrant/
|
.vagrant/
|
||||||
|
|
||||||
|
# Log files (if you are creating logs in debug mode, uncomment this)
|
||||||
|
# *.logs
|
||||||
|
|
|
@ -1,12 +1,17 @@
|
||||||
# swap
|
# Swap
|
||||||
[._]*.s[a-v][a-z]
|
[._]*.s[a-v][a-z]
|
||||||
[._]*.sw[a-p]
|
[._]*.sw[a-p]
|
||||||
[._]s[a-v][a-z]
|
[._]s[a-rt-v][a-z]
|
||||||
|
[._]ss[a-gi-z]
|
||||||
[._]sw[a-p]
|
[._]sw[a-p]
|
||||||
# session
|
|
||||||
|
# Session
|
||||||
Session.vim
|
Session.vim
|
||||||
# temporary
|
|
||||||
|
# Temporary
|
||||||
.netrwhist
|
.netrwhist
|
||||||
*~
|
*~
|
||||||
# auto-generated tag files
|
# Auto-generated tag files
|
||||||
tags
|
tags
|
||||||
|
# Persistent undo
|
||||||
|
[._]*.un~
|
||||||
|
|
|
@ -4,6 +4,7 @@
|
||||||
## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
|
## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
|
||||||
|
|
||||||
# User-specific files
|
# User-specific files
|
||||||
|
*.rsuser
|
||||||
*.suo
|
*.suo
|
||||||
*.user
|
*.user
|
||||||
*.userosscache
|
*.userosscache
|
||||||
|
@ -24,11 +25,14 @@ bld/
|
||||||
[Oo]bj/
|
[Oo]bj/
|
||||||
[Ll]og/
|
[Ll]og/
|
||||||
|
|
||||||
# Visual Studio 2015 cache/options directory
|
# Visual Studio 2015/2017 cache/options directory
|
||||||
.vs/
|
.vs/
|
||||||
# Uncomment if you have tasks that create the project's static files in wwwroot
|
# Uncomment if you have tasks that create the project's static files in wwwroot
|
||||||
#wwwroot/
|
#wwwroot/
|
||||||
|
|
||||||
|
# Visual Studio 2017 auto generated files
|
||||||
|
Generated\ Files/
|
||||||
|
|
||||||
# MSTest test Results
|
# MSTest test Results
|
||||||
[Tt]est[Rr]esult*/
|
[Tt]est[Rr]esult*/
|
||||||
[Bb]uild[Ll]og.*
|
[Bb]uild[Ll]og.*
|
||||||
|
@ -42,20 +46,28 @@ TestResult.xml
|
||||||
[Rr]eleasePS/
|
[Rr]eleasePS/
|
||||||
dlldata.c
|
dlldata.c
|
||||||
|
|
||||||
|
# Benchmark Results
|
||||||
|
BenchmarkDotNet.Artifacts/
|
||||||
|
|
||||||
# .NET Core
|
# .NET Core
|
||||||
project.lock.json
|
project.lock.json
|
||||||
project.fragment.lock.json
|
project.fragment.lock.json
|
||||||
artifacts/
|
artifacts/
|
||||||
**/Properties/launchSettings.json
|
|
||||||
|
|
||||||
|
# StyleCop
|
||||||
|
StyleCopReport.xml
|
||||||
|
|
||||||
|
# Files built by Visual Studio
|
||||||
*_i.c
|
*_i.c
|
||||||
*_p.c
|
*_p.c
|
||||||
*_i.h
|
*_h.h
|
||||||
*.ilk
|
*.ilk
|
||||||
*.meta
|
*.meta
|
||||||
*.obj
|
*.obj
|
||||||
|
*.iobj
|
||||||
*.pch
|
*.pch
|
||||||
*.pdb
|
*.pdb
|
||||||
|
*.ipdb
|
||||||
*.pgc
|
*.pgc
|
||||||
*.pgd
|
*.pgd
|
||||||
*.rsp
|
*.rsp
|
||||||
|
@ -65,6 +77,7 @@ artifacts/
|
||||||
*.tlh
|
*.tlh
|
||||||
*.tmp
|
*.tmp
|
||||||
*.tmp_proj
|
*.tmp_proj
|
||||||
|
*_wpftmp.csproj
|
||||||
*.log
|
*.log
|
||||||
*.vspscc
|
*.vspscc
|
||||||
*.vssscc
|
*.vssscc
|
||||||
|
@ -93,6 +106,9 @@ ipch/
|
||||||
*.vspx
|
*.vspx
|
||||||
*.sap
|
*.sap
|
||||||
|
|
||||||
|
# Visual Studio Trace Files
|
||||||
|
*.e2e
|
||||||
|
|
||||||
# TFS 2012 Local Workspace
|
# TFS 2012 Local Workspace
|
||||||
$tf/
|
$tf/
|
||||||
|
|
||||||
|
@ -113,6 +129,10 @@ _TeamCity*
|
||||||
# DotCover is a Code Coverage Tool
|
# DotCover is a Code Coverage Tool
|
||||||
*.dotCover
|
*.dotCover
|
||||||
|
|
||||||
|
# AxoCover is a Code Coverage Tool
|
||||||
|
.axoCover/*
|
||||||
|
!.axoCover/settings.json
|
||||||
|
|
||||||
# Visual Studio code coverage results
|
# Visual Studio code coverage results
|
||||||
*.coverage
|
*.coverage
|
||||||
*.coveragexml
|
*.coveragexml
|
||||||
|
@ -148,7 +168,7 @@ publish/
|
||||||
# Publish Web Output
|
# Publish Web Output
|
||||||
*.[Pp]ublish.xml
|
*.[Pp]ublish.xml
|
||||||
*.azurePubxml
|
*.azurePubxml
|
||||||
# TODO: Comment the next line if you want to checkin your web deploy settings
|
# Note: 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
|
*.publishproj
|
||||||
|
@ -161,11 +181,11 @@ PublishScripts/
|
||||||
# NuGet Packages
|
# NuGet Packages
|
||||||
*.nupkg
|
*.nupkg
|
||||||
# The packages folder can be ignored because of Package Restore
|
# The packages folder can be ignored because of Package Restore
|
||||||
**/packages/*
|
**/[Pp]ackages/*
|
||||||
# except build/, which is used as an MSBuild target.
|
# except build/, which is used as an MSBuild target.
|
||||||
!**/packages/build/
|
!**/[Pp]ackages/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
|
#!**/[Pp]ackages/repositories.config
|
||||||
# NuGet v3's project.json files produces more ignorable files
|
# NuGet v3's project.json files produces more ignorable files
|
||||||
*.nuget.props
|
*.nuget.props
|
||||||
*.nuget.targets
|
*.nuget.targets
|
||||||
|
@ -183,6 +203,7 @@ AppPackages/
|
||||||
BundleArtifacts/
|
BundleArtifacts/
|
||||||
Package.StoreAssociation.xml
|
Package.StoreAssociation.xml
|
||||||
_pkginfo.txt
|
_pkginfo.txt
|
||||||
|
*.appx
|
||||||
|
|
||||||
# Visual Studio cache files
|
# Visual Studio cache files
|
||||||
# files ending in .cache can be ignored
|
# files ending in .cache can be ignored
|
||||||
|
@ -201,6 +222,10 @@ ClientBin/
|
||||||
*.publishsettings
|
*.publishsettings
|
||||||
orleans.codegen.cs
|
orleans.codegen.cs
|
||||||
|
|
||||||
|
# Including strong name files can present a security risk
|
||||||
|
# (https://github.com/github/gitignore/pull/2483#issue-259490424)
|
||||||
|
#*.snk
|
||||||
|
|
||||||
# Since there are multiple workflows, uncomment next line to ignore bower_components
|
# Since there are multiple workflows, uncomment next line to ignore bower_components
|
||||||
# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
|
# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
|
||||||
#bower_components/
|
#bower_components/
|
||||||
|
@ -215,15 +240,19 @@ _UpgradeReport_Files/
|
||||||
Backup*/
|
Backup*/
|
||||||
UpgradeLog*.XML
|
UpgradeLog*.XML
|
||||||
UpgradeLog*.htm
|
UpgradeLog*.htm
|
||||||
|
ServiceFabricBackup/
|
||||||
|
*.rptproj.bak
|
||||||
|
|
||||||
# SQL Server files
|
# SQL Server files
|
||||||
*.mdf
|
*.mdf
|
||||||
*.ldf
|
*.ldf
|
||||||
|
*.ndf
|
||||||
|
|
||||||
# Business Intelligence projects
|
# Business Intelligence projects
|
||||||
*.rdl.data
|
*.rdl.data
|
||||||
*.bim.layout
|
*.bim.layout
|
||||||
*.bim_*.settings
|
*.bim_*.settings
|
||||||
|
*.rptproj.rsuser
|
||||||
|
|
||||||
# Microsoft Fakes
|
# Microsoft Fakes
|
||||||
FakesAssemblies/
|
FakesAssemblies/
|
||||||
|
@ -235,9 +264,6 @@ FakesAssemblies/
|
||||||
.ntvs_analysis.dat
|
.ntvs_analysis.dat
|
||||||
node_modules/
|
node_modules/
|
||||||
|
|
||||||
# Typescript v1 declaration files
|
|
||||||
typings/
|
|
||||||
|
|
||||||
# Visual Studio 6 build log
|
# Visual Studio 6 build log
|
||||||
*.plg
|
*.plg
|
||||||
|
|
||||||
|
@ -266,8 +292,8 @@ paket-files/
|
||||||
.idea/
|
.idea/
|
||||||
*.sln.iml
|
*.sln.iml
|
||||||
|
|
||||||
# CodeRush
|
# CodeRush personal settings
|
||||||
.cr/
|
.cr/personal
|
||||||
|
|
||||||
# Python Tools for Visual Studio (PTVS)
|
# Python Tools for Visual Studio (PTVS)
|
||||||
__pycache__/
|
__pycache__/
|
||||||
|
@ -277,6 +303,9 @@ __pycache__/
|
||||||
# tools/**
|
# tools/**
|
||||||
# !tools/packages.config
|
# !tools/packages.config
|
||||||
|
|
||||||
|
# Tabs Studio
|
||||||
|
*.tss
|
||||||
|
|
||||||
# Telerik's JustMock configuration file
|
# Telerik's JustMock configuration file
|
||||||
*.jmconfig
|
*.jmconfig
|
||||||
|
|
||||||
|
@ -285,3 +314,21 @@ __pycache__/
|
||||||
*.btm.cs
|
*.btm.cs
|
||||||
*.odx.cs
|
*.odx.cs
|
||||||
*.xsd.cs
|
*.xsd.cs
|
||||||
|
|
||||||
|
# OpenCover UI analysis results
|
||||||
|
OpenCover/
|
||||||
|
|
||||||
|
# Azure Stream Analytics local run output
|
||||||
|
ASALocalRun/
|
||||||
|
|
||||||
|
# MSBuild Binary and Structured Log
|
||||||
|
*.binlog
|
||||||
|
|
||||||
|
# NVidia Nsight GPU debugger configuration file
|
||||||
|
*.nvuser
|
||||||
|
|
||||||
|
# MFractors (Xamarin productivity tool) working folder
|
||||||
|
.mfractor/
|
||||||
|
|
||||||
|
# Local History for Visual Studio
|
||||||
|
.localhistory/
|
||||||
|
|
|
@ -3,8 +3,11 @@ Thumbs.db
|
||||||
ehthumbs.db
|
ehthumbs.db
|
||||||
ehthumbs_vista.db
|
ehthumbs_vista.db
|
||||||
|
|
||||||
|
# Dump file
|
||||||
|
*.stackdump
|
||||||
|
|
||||||
# Folder config file
|
# Folder config file
|
||||||
Desktop.ini
|
[Dd]esktop.ini
|
||||||
|
|
||||||
# Recycle Bin used on file shares
|
# Recycle Bin used on file shares
|
||||||
$RECYCLE.BIN/
|
$RECYCLE.BIN/
|
||||||
|
@ -12,6 +15,7 @@ $RECYCLE.BIN/
|
||||||
# Windows Installer files
|
# Windows Installer files
|
||||||
*.cab
|
*.cab
|
||||||
*.msi
|
*.msi
|
||||||
|
*.msix
|
||||||
*.msm
|
*.msm
|
||||||
*.msp
|
*.msp
|
||||||
|
|
||||||
|
|
|
@ -7,6 +7,7 @@ wp-content/blogs.dir/
|
||||||
wp-content/cache/
|
wp-content/cache/
|
||||||
wp-content/upgrade/
|
wp-content/upgrade/
|
||||||
wp-content/uploads/
|
wp-content/uploads/
|
||||||
|
wp-content/mu-plugins/
|
||||||
wp-content/wp-cache-config.php
|
wp-content/wp-cache-config.php
|
||||||
wp-content/plugins/hello.php
|
wp-content/plugins/hello.php
|
||||||
|
|
||||||
|
|
|
@ -21,3 +21,59 @@ xcuserdata/
|
||||||
*.moved-aside
|
*.moved-aside
|
||||||
*.xccheckout
|
*.xccheckout
|
||||||
*.xcscmblueprint
|
*.xcscmblueprint
|
||||||
|
|
||||||
|
## Obj-C/Swift specific
|
||||||
|
*.hmap
|
||||||
|
*.ipa
|
||||||
|
*.dSYM.zip
|
||||||
|
*.dSYM
|
||||||
|
|
||||||
|
## 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/
|
||||||
|
# Package.pins
|
||||||
|
# Package.resolved
|
||||||
|
.build/
|
||||||
|
|
||||||
|
# CocoaPods
|
||||||
|
#
|
||||||
|
# We recommend against adding the Pods directory to your .gitignore. However
|
||||||
|
# you should judge for yourself, the pros and cons are mentioned at:
|
||||||
|
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
|
||||||
|
#
|
||||||
|
# Pods/
|
||||||
|
#
|
||||||
|
# Add this line if you want to avoid checking in source code from the Xcode workspace
|
||||||
|
# *.xcworkspace
|
||||||
|
|
||||||
|
# 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://docs.fastlane.tools/best-practices/source-control/#source-control
|
||||||
|
|
||||||
|
fastlane/report.xml
|
||||||
|
fastlane/Preview.html
|
||||||
|
fastlane/screenshots/**/*.png
|
||||||
|
fastlane/test_output
|
||||||
|
|
||||||
|
# Code Injection
|
||||||
|
#
|
||||||
|
# After new code Injection tools there's a generated folder /iOSInjectionProject
|
||||||
|
# https://github.com/johnno1962/injectionforxcode
|
||||||
|
|
||||||
|
iOSInjectionProject/
|
||||||
|
|
||||||
|
|
|
@ -19,7 +19,6 @@ temp/
|
||||||
data/DoctrineORMModule/Proxy/
|
data/DoctrineORMModule/Proxy/
|
||||||
data/DoctrineORMModule/cache/
|
data/DoctrineORMModule/cache/
|
||||||
|
|
||||||
|
|
||||||
# Legacy ZF1
|
# Legacy ZF1
|
||||||
demos/
|
demos/
|
||||||
extras/documentation
|
extras/documentation
|
||||||
|
|
|
@ -1,11 +1,11 @@
|
||||||
*.DS_Store
|
# General
|
||||||
|
.DS_Store
|
||||||
.AppleDouble
|
.AppleDouble
|
||||||
.LSOverride
|
.LSOverride
|
||||||
|
|
||||||
# Icon must end with two \r
|
# Icon must end with two \r
|
||||||
Icon
|
Icon
|
||||||
|
|
||||||
|
|
||||||
# Thumbnails
|
# Thumbnails
|
||||||
._*
|
._*
|
||||||
|
|
||||||
|
|
24
scripts/generate-gitignores.go
vendored
24
scripts/generate-gitignores.go
vendored
|
@ -59,6 +59,8 @@ func main() {
|
||||||
|
|
||||||
tr := tar.NewReader(gz)
|
tr := tar.NewReader(gz)
|
||||||
|
|
||||||
|
filesToCopy := make(map[string]string, 0)
|
||||||
|
|
||||||
for {
|
for {
|
||||||
hdr, err := tr.Next()
|
hdr, err := tr.Next()
|
||||||
|
|
||||||
|
@ -74,6 +76,12 @@ func main() {
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if hdr.Typeflag == tar.TypeSymlink {
|
||||||
|
fmt.Printf("Found symlink %s -> %s\n", hdr.Name, hdr.Linkname)
|
||||||
|
filesToCopy[strings.TrimSuffix(filepath.Base(hdr.Name), ".gitignore")] = strings.TrimSuffix(filepath.Base(hdr.Linkname), ".gitignore")
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
out, err := os.Create(path.Join(destination, strings.TrimSuffix(filepath.Base(hdr.Name), ".gitignore")))
|
out, err := os.Create(path.Join(destination, strings.TrimSuffix(filepath.Base(hdr.Name), ".gitignore")))
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
@ -89,5 +97,21 @@ func main() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
for dst, src := range filesToCopy {
|
||||||
|
// Read all content of src to data
|
||||||
|
src = path.Join(destination, src)
|
||||||
|
data, err := ioutil.ReadFile(src)
|
||||||
|
if err != nil {
|
||||||
|
log.Fatalf("Failed to read src file. %s", err)
|
||||||
|
}
|
||||||
|
// Write data to dst
|
||||||
|
dst = path.Join(destination, dst)
|
||||||
|
err = ioutil.WriteFile(dst, data, 0644)
|
||||||
|
if err != nil {
|
||||||
|
log.Fatalf("Failed to write new file. %s", err)
|
||||||
|
}
|
||||||
|
fmt.Printf("Written (copy of %s) %s\n", src, dst)
|
||||||
|
}
|
||||||
|
|
||||||
fmt.Println("Done")
|
fmt.Println("Done")
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue