1
0
mirror of https://github.com/github/gitignore synced 2024-05-29 08:48:18 +02:00

Merge Node.gitignore with master

This commit is contained in:
Matti Jokitulppo 2016-02-12 07:44:43 +02:00
commit e9e59f2259
42 changed files with 351 additions and 71 deletions

View File

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

View File

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

View File

@ -1,18 +1,27 @@
# Dont commit the following directories created by pub. # See https://www.dartlang.org/tools/private-files.html
# Files and directories created by pub
.buildlog .buildlog
.packages
.project
.pub/ .pub/
build/ build/
packages **/packages/
.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
# Or the files created by dartdoc. # Directory created by dartdoc
doc/ doc/api/
# Don't commit pubspec lock file. (Library packages only! Remove pattern if developing an application package.) # Don't commit pubspec lock file
# (Library packages only! Remove pattern if developing an application package)
pubspec.lock pubspec.lock

View File

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

View File

@ -15,7 +15,7 @@ robots.txt
/MAINTAINERS.txt /MAINTAINERS.txt
/UPGRADE.txt /UPGRADE.txt
/README.txt /README.txt
sites/all/README.txt sites/README.txt
sites/all/modules/README.txt sites/all/modules/README.txt
sites/all/themes/README.txt sites/all/themes/README.txt

View File

@ -11,6 +11,10 @@
# comment the following line if you want to have your project file included. # comment the following line if you want to have your project file included.
eagle.epf eagle.epf
# Autorouter files
*.pro
*.job
# CAM files # CAM files
*.$$$ *.$$$
*.cmp *.cmp
@ -34,3 +38,7 @@ eagle.epf
*.info *.info
*.eps *.eps
# file locks introduced since 7.x
*.lck

View File

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

5
Elm.gitignore Normal file
View File

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

10
Global/Calabash.gitignore Normal file
View File

@ -0,0 +1,10 @@
# Calabash / Cucumber
rerun/
reports/
screenshots/
screenshot*.png
test-servers/
# bundler
.bundle
vendor

View File

@ -1,6 +1,5 @@
*.pydevproject
.metadata .metadata
.gradle
bin/ bin/
tmp/ tmp/
*.tmp *.tmp
@ -20,7 +19,10 @@ local.properties
# Locally stored "Eclipse launch configurations" # Locally stored "Eclipse launch configurations"
*.launch *.launch
# CDT-specific # PyDev specific (Python IDE for Eclipse)
*.pydevproject
# CDT-specific (C/C++ Development Tooling)
.cproject .cproject
# JDT-specific (Eclipse Java Development Tools) # JDT-specific (Eclipse Java Development Tools)
@ -29,11 +31,20 @@ local.properties
# Java annotation processor (APT) # Java annotation processor (APT)
.factorypath .factorypath
# PDT-specific # PDT-specific (PHP Development Tools)
.buildpath .buildpath
# sbteclipse plugin # sbteclipse plugin
.target .target
# Tern plugin
.tern-project
# TeXlipse plugin # TeXlipse plugin
.texlipse .texlipse
# STS (Spring Tool Suite)
.springBeans
# Code Recommenders
.recommenders/

View File

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

View File

@ -30,3 +30,9 @@ tramp
# cask packages # cask packages
.cask/ .cask/
# Flycheck
flycheck_*.el
# server auth directory
/server/

View File

@ -1,33 +1,28 @@
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
*.iml
## Directory-based project format:
.idea/
# if you remove the above rule, at least ignore the following:
# User-specific stuff: # User-specific stuff:
# .idea/workspace.xml .idea/workspace.xml
# .idea/tasks.xml .idea/tasks.xml
# .idea/dictionaries .idea/dictionaries
# .idea/shelf .idea/vcs.xml
.idea/jsLibraryMappings.xml
# Sensitive or high-churn files: # Sensitive or high-churn files:
# .idea/dataSources.ids .idea/dataSources.ids
# .idea/dataSources.xml .idea/dataSources.xml
# .idea/sqlDataSources.xml .idea/sqlDataSources.xml
# .idea/dynamic.xml .idea/dynamic.xml
# .idea/uiDesigner.xml .idea/uiDesigner.xml
# Gradle: # Gradle:
# .idea/gradle.xml .idea/gradle.xml
# .idea/libraries .idea/libraries
# Mongo Explorer plugin: # Mongo Explorer plugin:
# .idea/mongoSettings.xml .idea/mongoSettings.xml
## File-based project format: ## File-based project format:
*.ipr
*.iws *.iws
## Plugin-specific files: ## Plugin-specific files:

View File

@ -1,5 +1,8 @@
*~ *~
# temporary files which can be created if a process still has a handle open of a deleted file
.fuse_hidden*
# KDE directory preferences # KDE directory preferences
.directory .directory

View File

@ -14,3 +14,6 @@
# Simulink Code Generation # Simulink Code Generation
slprj/ slprj/
# Session info
octave-workspace

View File

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

View File

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

View File

@ -1,6 +1,8 @@
# swap
[._]*.s[a-w][a-z] [._]*.s[a-w][a-z]
[._]s[a-w][a-z] [._]s[a-w][a-z]
*.un~ # session
Session.vim Session.vim
# temporary
.netrwhist .netrwhist
*~ *~

View File

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

View File

@ -4,7 +4,7 @@
## Build generated ## Build generated
build/ build/
DerivedData DerivedData/
## Various settings ## Various settings
*.pbxuser *.pbxuser
@ -15,9 +15,9 @@ DerivedData
!default.mode2v3 !default.mode2v3
*.perspectivev3 *.perspectivev3
!default.perspectivev3 !default.perspectivev3
xcuserdata xcuserdata/
## Other ## Other
*.xccheckout
*.moved-aside *.moved-aside
*.xcuserstate *.xccheckout
*.xcscmblueprint

View File

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

View File

@ -9,3 +9,6 @@ gradle-app.setting
# Cache of project # Cache of project
.gradletasknamecache .gradletasknamecache
# # Work around https://youtrack.jetbrains.com/issue/IDEA-116898
# gradle/wrapper/gradle-wrapper.properties

View File

@ -296,6 +296,7 @@
/components/com_wrapper/* /components/com_wrapper/*
/components/index.html /components/index.html
/images/banners/* /images/banners/*
/images/headers/*
/images/sampledata/* /images/sampledata/*
/images/joomla* /images/joomla*
/images/index.html /images/index.html
@ -309,6 +310,7 @@
/language/en-GB/en-GB.com_tags.ini /language/en-GB/en-GB.com_tags.ini
/language/en-GB/en-GB.finder_cli.ini /language/en-GB/en-GB.finder_cli.ini
/language/en-GB/en-GB.lib_fof.sys.ini /language/en-GB/en-GB.lib_fof.sys.ini
/language/en-GB/en-GB.lib_fof.ini
/language/en-GB/en-GB.com_content.ini /language/en-GB/en-GB.com_content.ini
/language/en-GB/en-GB.lib_idna_convert.sys.ini /language/en-GB/en-GB.lib_idna_convert.sys.ini
/language/en-GB/en-GB.com_mailto.ini /language/en-GB/en-GB.com_mailto.ini
@ -395,21 +397,36 @@
/language/en-GB/install.xml /language/en-GB/install.xml
/language/overrides/* /language/overrides/*
/language/index.html /language/index.html
/layouts/joomla/*
/layouts/libraries/*
/layouts/plugins/*
/layouts/index.html
/libraries/cms.php /libraries/cms.php
/libraries/cms/* /libraries/cms/*
/libraries/fof/*
/libraries/idna_convert/*
/libraries/joomla/* /libraries/joomla/*
/libraries/legacy/*
/libraries/phpass/*
/libraries/phpmailer/* /libraries/phpmailer/*
/libraries/phputf8/* /libraries/phputf8/*
/libraries/simplepie/* /libraries/simplepie/*
/libraries/vendor/*
/libraries/classmap.php
/libraries/import.legacy.php
/libraries/index.html /libraries/index.html
/libraries/import.php /libraries/import.php
/libraries/loader.php /libraries/loader.php
/libraries/platform.php /libraries/platform.php
/logs/* /logs/*
/media/cms/* /media/cms/*
/media/com_contenthistory/*
/media/com_finder/* /media/com_finder/*
/media/com_joomlaupdate/*
/media/com_wrapper/*
/media/contacts/* /media/contacts/*
/media/editors/* /media/editors/*
/media/jui/*
/media/mailto/* /media/mailto/*
/media/media/* /media/media/*
/media/mod_languages/* /media/mod_languages/*
@ -439,6 +456,8 @@
/modules/mod_search/* /modules/mod_search/*
/modules/mod_stats/* /modules/mod_stats/*
/modules/mod_syndicate/* /modules/mod_syndicate/*
/modules/mod_tags_popular/*
/modules/mod_tags_similar/*
/modules/mod_users_latest/* /modules/mod_users_latest/*
/modules/mod_weblinks/* /modules/mod_weblinks/*
/modules/mod_whosonline/* /modules/mod_whosonline/*
@ -448,6 +467,7 @@
/plugins/authentication/gmail/* /plugins/authentication/gmail/*
/plugins/authentication/joomla/* /plugins/authentication/joomla/*
/plugins/authentication/ldap/* /plugins/authentication/ldap/*
/plugins/authentication/cookie/*
/plugins/authentication/index.html /plugins/authentication/index.html
/plugins/captcha/recaptcha/* /plugins/captcha/recaptcha/*
/plugins/captcha/index.html /plugins/captcha/index.html
@ -523,3 +543,4 @@
/index.php /index.php
/joomla.xml /joomla.xml
/*.txt /*.txt
/robots.txt.dist

View File

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

View File

@ -1,4 +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
.env.example

View File

@ -24,6 +24,11 @@ coverage
build/Release build/Release
# Dependency directories # Dependency directories
# https://docs.npmjs.com/misc/faq#should-i-check-my-node-modules-folder-into-git
node_modules node_modules
jspm_packages jspm_packages
# Optional npm cache directory
.npm
# Optional REPL history
.node_repl_history

View File

@ -4,7 +4,7 @@
## Build generated ## Build generated
build/ build/
DerivedData DerivedData/
## Various settings ## Various settings
*.pbxuser *.pbxuser
@ -15,12 +15,11 @@ DerivedData
!default.mode2v3 !default.mode2v3
*.perspectivev3 *.perspectivev3
!default.perspectivev3 !default.perspectivev3
xcuserdata xcuserdata/
## Other ## Other
*.xccheckout
*.moved-aside *.moved-aside
*.xcuserstate *.xccheckout
*.xcscmblueprint *.xcscmblueprint
## Obj-C/Swift specific ## Obj-C/Swift specific
@ -31,9 +30,9 @@ xcuserdata
# #
# 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-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/
# Carthage # Carthage
# #
@ -41,3 +40,13 @@ xcuserdata
# 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.
# For more information about the recommended setup visit:
# https://github.com/fastlane/fastlane/blob/master/docs/Gitignore.md
fastlane/report.xml
fastlane/screenshots

View File

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

View File

@ -5,7 +5,6 @@ bin/
/lib/ /lib/
/logs/ /logs/
/modules /modules
/project/project
/project/target /project/target
/target /target
tmp/ tmp/

View File

@ -43,6 +43,7 @@ htmlcov/
nosetests.xml nosetests.xml
coverage.xml coverage.xml
*,cover *,cover
.hypothesis/
# Translations # Translations
*.mo *.mo
@ -50,9 +51,17 @@ coverage.xml
# Django stuff: # Django stuff:
*.log *.log
local_settings.py
# Sphinx documentation # Sphinx documentation
docs/_build/ docs/_build/
# PyBuilder # PyBuilder
target/ target/
# Ipython Notebook
.ipynb_checkpoints
# pyenv
.python-version

View File

@ -23,7 +23,7 @@ moc_*.cpp
qrc_*.cpp qrc_*.cpp
ui_*.h ui_*.h
Makefile* Makefile*
*-build-* *build-*
# QtCreator # QtCreator
@ -32,3 +32,7 @@ Makefile*
#QtCtreator Qml #QtCtreator Qml
*.qmlproject.user *.qmlproject.user
*.qmlproject.user.* *.qmlproject.user.*
#QtCtreator CMake
CMakeLists.txt.user

View File

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

View File

@ -21,7 +21,7 @@ build/
/doc/ /doc/
/rdoc/ /rdoc/
## Environment normalisation: ## Environment normalization:
/.bundle/ /.bundle/
/vendor/bundle /vendor/bundle
/lib/bundler/man/ /lib/bundler/man/

View File

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

View File

@ -4,7 +4,7 @@
## Build generated ## Build generated
build/ build/
DerivedData DerivedData/
## Various settings ## Various settings
*.pbxuser *.pbxuser
@ -15,23 +15,32 @@ DerivedData
!default.mode2v3 !default.mode2v3
*.perspectivev3 *.perspectivev3
!default.perspectivev3 !default.perspectivev3
xcuserdata xcuserdata/
## Other ## Other
*.xccheckout
*.moved-aside *.moved-aside
*.xcuserstate *.xccheckout
*.xcscmblueprint *.xcscmblueprint
## Obj-C/Swift specific ## Obj-C/Swift specific
*.hmap *.hmap
*.ipa *.ipa
## Playgrounds
timeline.xctimeline
playground.xcworkspace
# Swift Package Manager
#
# Add this line if you want to avoid checking in source code from Swift Package Manager dependencies.
# Packages/
.build/
# CocoaPods # CocoaPods
# #
# We recommend against adding the Pods directory to your .gitignore. However # We recommend against adding the Pods directory to your .gitignore. However
# you should judge for yourself, the pros and cons are mentioned at: # you should judge for yourself, the pros and cons are mentioned at:
# http://guides.cocoapods.org/using/using-cocoapods.html#should-i-ignore-the-pods-directory-in-source-control # https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
# #
# Pods/ # Pods/
@ -41,3 +50,13 @@ xcuserdata
# 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.
# For more information about the recommended setup visit:
# https://github.com/fastlane/fastlane/blob/master/docs/Gitignore.md
fastlane/report.xml
fastlane/screenshots

View File

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

View File

@ -6,6 +6,7 @@
*.fls *.fls
*.out *.out
*.toc *.toc
*.fmt
## Intermediate documents: ## Intermediate documents:
*.dvi *.dvi
@ -32,8 +33,6 @@
*.pdfsync *.pdfsync
## Auxiliary and intermediate files from other packages: ## Auxiliary and intermediate files from other packages:
# algorithms # algorithms
*.alg *.alg
*.loa *.loa
@ -49,8 +48,15 @@ acs-*.bib
*.snm *.snm
*.vrb *.vrb
#(e)ledmac/(e)ledpar # cprotect
*.cpt
# fixme
*.lox
#(r)(e)ledmac/(r)(e)ledpar
*.end *.end
*.?end
*.[1-9] *.[1-9]
*.[1-9][0-9] *.[1-9][0-9]
*.[1-9][0-9][0-9] *.[1-9][0-9][0-9]
@ -93,6 +99,8 @@ acs-*.bib
# minitoc # minitoc
*.maf *.maf
*.mlf
*.mlt
*.mtc *.mtc
*.mtc[0-9] *.mtc[0-9]
*.mtc[1-9][0-9] *.mtc[1-9][0-9]
@ -120,6 +128,17 @@ _minted*
*.sympy *.sympy
sympy-plots-for-*.tex/ sympy-plots-for-*.tex/
# pdfcomment
*.upa
*.upb
#pythontex
*.pytxcode
pythontex-files-*/
# Texpad
.texpadtmp
# TikZ & PGF # TikZ & PGF
*.dpth *.dpth
*.md5 *.md5
@ -131,6 +150,16 @@ sympy-plots-for-*.tex/
# xindy # xindy
*.xdy *.xdy
# xypic precompiled matrices
*.xyc
# WinEdt # WinEdt
*.bak *.bak
*.sav *.sav
# endfloat
*.ttt
*.fff
# Latexian
TSWLatexianTemp*

View File

@ -1,5 +1,5 @@
## TYPO3 v6.2 ## TYPO3 v6.2
# Ignore serveral upload and file directories. # Ignore several upload and file directories.
/fileadmin/user_upload/ /fileadmin/user_upload/
/fileadmin/_temp_/ /fileadmin/_temp_/
/fileadmin/_processed_/ /fileadmin/_processed_/

View File

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

View File

@ -2,8 +2,11 @@
/[Tt]emp/ /[Tt]emp/
/[Oo]bj/ /[Oo]bj/
/[Bb]uild/ /[Bb]uild/
/[Bb]uilds/
/Assets/AssetStoreTools*
# Autogenerated VS/MD solution and project files # Autogenerated VS/MD solution and project files
ExportedObj/
*.csproj *.csproj
*.unityproj *.unityproj
*.sln *.sln
@ -13,9 +16,15 @@
*.userprefs *.userprefs
*.pidb *.pidb
*.booproj *.booproj
*.svd
# Unity3D generated meta files # Unity3D generated meta files
*.pidb.meta *.pidb.meta
# Unity3D Generated File On Crash Reports # Unity3D Generated File On Crash Reports
sysinfo.txt sysinfo.txt
# Builds
*.apk
*.unitypackage

59
UnrealEngine.gitignore Normal file
View File

@ -0,0 +1,59 @@
# 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
*.VC.opendb
# Precompiled Assets
SourceArt/**/*.png
SourceArt/**/*.tga
# Binary Files
Binaries/*
# Builds
Build/*
# Don't ignore icon files in Build
!Build/**/*.ico
# Configuration files generated by the Editor
Saved/*
# Compiled source files for the engine to use
Intermediate/*
# Cache files for the editor to use
DerivedDataCache/*

View File

@ -17,10 +17,10 @@
[Rr]eleases/ [Rr]eleases/
x64/ x64/
x86/ x86/
build/
bld/ bld/
[Bb]in/ [Bb]in/
[Oo]bj/ [Oo]bj/
[Ll]og/
# Visual Studio 2015 cache/options directory # Visual Studio 2015 cache/options directory
.vs/ .vs/
@ -76,6 +76,7 @@ _Chutzpah*
ipch/ ipch/
*.aps *.aps
*.ncb *.ncb
*.opendb
*.opensdf *.opensdf
*.sdf *.sdf
*.cachefile *.cachefile
@ -150,13 +151,24 @@ publish/
!**/packages/build/ !**/packages/build/
# Uncomment if necessary however generally it will be regenerated when needed # Uncomment if necessary however generally it will be regenerated when needed
#!**/packages/repositories.config #!**/packages/repositories.config
# NuGet v3's project.json files produces more ignoreable files
*.nuget.props
*.nuget.targets
# Windows Azure Build Output # Microsoft Azure Build Output
csx/ csx/
*.build.csdef *.build.csdef
# Microsoft Azure Emulator
ecf/
rcf/
# Microsoft Azure ApplicationInsights config file
ApplicationInsights.config
# Windows Store app package directory # Windows Store app package directory
AppPackages/ AppPackages/
BundleArtifacts/
# Visual Studio cache files # Visual Studio cache files
# files ending in .cache can be ignored # files ending in .cache can be ignored
@ -166,7 +178,6 @@ AppPackages/
# Others # Others
ClientBin/ ClientBin/
[Ss]tyle[Cc]op.*
~$* ~$*
*~ *~
*.dbmdl *.dbmdl