Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitignore
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
general
gitignore
Commits
6ac648f0
Commit
6ac648f0
authored
Feb 12, 2016
by
Jonathan Chu
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'upstream/master'
parents
a2d7278d
3a529da6
Changes
42
Hide whitespace changes
Inline
Side-by-side
Showing
42 changed files
with
348 additions
and
71 deletions
+348
-71
Autotools.gitignore
Autotools.gitignore
+4
-0
Composer.gitignore
Composer.gitignore
+1
-1
Dart.gitignore
Dart.gitignore
+17
-8
Delphi.gitignore
Delphi.gitignore
+9
-1
Drupal.gitignore
Drupal.gitignore
+1
-1
Eagle.gitignore
Eagle.gitignore
+8
-0
Elixir.gitignore
Elixir.gitignore
+1
-0
Elm.gitignore
Elm.gitignore
+5
-0
Calabash.gitignore
Global/Calabash.gitignore
+10
-0
Eclipse.gitignore
Global/Eclipse.gitignore
+15
-4
EiffelStudio.gitignore
Global/EiffelStudio.gitignore
+1
-1
Emacs.gitignore
Global/Emacs.gitignore
+3
-0
JetBrains.gitignore
Global/JetBrains.gitignore
+15
-20
Linux.gitignore
Global/Linux.gitignore
+3
-0
Matlab.gitignore
Global/Matlab.gitignore
+3
-0
MicrosoftOffice.gitignore
Global/MicrosoftOffice.gitignore
+3
-0
NetBeans.gitignore
Global/NetBeans.gitignore
+0
-1
Vim.gitignore
Global/Vim.gitignore
+3
-1
VirtualEnv.gitignore
Global/VirtualEnv.gitignore
+2
-0
Xcode.gitignore
Global/Xcode.gitignore
+4
-4
XilinxISE.gitignore
Global/XilinxISE.gitignore
+10
-0
Gradle.gitignore
Gradle.gitignore
+3
-0
Joomla.gitignore
Joomla.gitignore
+21
-0
LICENSE
LICENSE
+1
-1
Laravel.gitignore
Laravel.gitignore
+11
-1
Node.gitignore
Node.gitignore
+6
-1
Objective-C.gitignore
Objective-C.gitignore
+15
-6
OpenCart.gitignore
OpenCart.gitignore
+2
-0
PlayFramework.gitignore
PlayFramework.gitignore
+0
-1
Python.gitignore
Python.gitignore
+9
-0
Qt.gitignore
Qt.gitignore
+5
-1
Rails.gitignore
Rails.gitignore
+5
-2
Ruby.gitignore
Ruby.gitignore
+1
-1
Rust.gitignore
Rust.gitignore
+4
-0
Swift.gitignore
Swift.gitignore
+24
-5
Symfony.gitignore
Symfony.gitignore
+3
-0
TeX.gitignore
TeX.gitignore
+32
-3
Typo3.gitignore
Typo3.gitignore
+1
-1
Umbraco.gitignore
Umbraco.gitignore
+5
-3
Unity.gitignore
Unity.gitignore
+9
-0
UnrealEngine.gitignore
UnrealEngine.gitignore
+59
-0
VisualStudio.gitignore
VisualStudio.gitignore
+14
-3
No files found.
Autotools.gitignore
View file @
6ac648f0
...
...
@@ -5,9 +5,13 @@ Makefile.in
# http://www.gnu.org/software/autoconf
/autom4te.cache
/autoscan.log
/autoscan-*.log
/aclocal.m4
/compile
/config.h.in
/configure
/configure.scan
/depcomp
/install-sh
/missing
...
...
Composer.gitignore
View file @
6ac648f0
composer.phar
vendor/
/
vendor/
# 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
...
...
Dart.gitignore
View file @
6ac648f0
# 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
.packages
.project
.pub/
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
*.
js_
*.
part.js
*.js.deps
*.js.map
*.info.json
#
Or the files created by dartdoc.
doc/
#
Directory created by dartdoc
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
Delphi.gitignore
View file @
6ac648f0
...
...
@@ -20,6 +20,10 @@
# Deployment Manager configuration file for your project. Added in Delphi XE2.
# Uncomment this if it is not mobile development and you do not use remote debug feature.
#*.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)
...
...
@@ -37,9 +41,13 @@
*.tds
*.dcu
*.lib
*.a
*.o
*.ocx
# Delphi autogenerated files (duplicated info)
*.cfg
*.hpp
*Resource.rc
# Delphi local files (user-specific info)
...
...
@@ -53,5 +61,5 @@
__history/
*.~*
# Castalia statistics file
# Castalia statistics file
(since XE7 Castalia is distributed with Delphi)
*.stat
Drupal.gitignore
View file @
6ac648f0
...
...
@@ -15,7 +15,7 @@ robots.txt
/MAINTAINERS.txt
/UPGRADE.txt
/README.txt
sites/
all/
README.txt
sites/README.txt
sites/all/modules/README.txt
sites/all/themes/README.txt
...
...
Eagle.gitignore
View file @
6ac648f0
...
...
@@ -11,6 +11,10 @@
# comment the following line if you want to have your project file included.
eagle.epf
# Autorouter files
*.pro
*.job
# CAM files
*.$$$
*.cmp
...
...
@@ -34,3 +38,7 @@ eagle.epf
*.info
*.eps
# file locks introduced since 7.x
*.lck
Elixir.gitignore
View file @
6ac648f0
/_build
/cover
/deps
erl_crash.dump
*.ez
Elm.gitignore
0 → 100644
View file @
6ac648f0
# elm-package generated files
elm-package.json
elm-stuff/
# elm-repl generated files
repl-temp-*
Global/Calabash.gitignore
0 → 100644
View file @
6ac648f0
# Calabash / Cucumber
rerun/
reports/
screenshots/
screenshot*.png
test-servers/
# bundler
.bundle
vendor
Global/Eclipse.gitignore
View file @
6ac648f0
*.pydevproject
.metadata
.gradle
bin/
tmp/
*.tmp
...
...
@@ -20,7 +19,10 @@ local.properties
# Locally stored "Eclipse launch configurations"
*.launch
# CDT-specific
# PyDev specific (Python IDE for Eclipse)
*.pydevproject
# CDT-specific (C/C++ Development Tooling)
.cproject
# JDT-specific (Eclipse Java Development Tools)
...
...
@@ -29,11 +31,20 @@ local.properties
# Java annotation processor (APT)
.factorypath
# PDT-specific
# PDT-specific
(PHP Development Tools)
.buildpath
# sbteclipse plugin
.target
# Tern plugin
.tern-project
# TeXlipse plugin
.texlipse
# STS (Spring Tool Suite)
.springBeans
# Code Recommenders
.recommenders/
Global/EiffelStudio.gitignore
View file @
6ac648f0
# The compilation directoy
# The compilation directo
r
y
EIFGENs
Global/Emacs.gitignore
View file @
6ac648f0
...
...
@@ -33,3 +33,6 @@ tramp
# Flycheck
flycheck_*.el
# server auth directory
/server/
Global/JetBrains.gitignore
View file @
6ac648f0
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio
*.iml
## Directory-based project format:
.idea/
# if you remove the above rule, at least ignore the following:
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
# User-specific stuff:
# .idea/workspace.xml
# .idea/tasks.xml
# .idea/dictionaries
# .idea/shelf
.idea/workspace.xml
.idea/tasks.xml
.idea/dictionaries
.idea/vcs.xml
.idea/jsLibraryMappings.xml
# Sensitive or high-churn files:
#
.idea/dataSources.ids
#
.idea/dataSources.xml
#
.idea/sqlDataSources.xml
#
.idea/dynamic.xml
#
.idea/uiDesigner.xml
.idea/dataSources.ids
.idea/dataSources.xml
.idea/sqlDataSources.xml
.idea/dynamic.xml
.idea/uiDesigner.xml
# Gradle:
#
.idea/gradle.xml
#
.idea/libraries
.idea/gradle.xml
.idea/libraries
# Mongo Explorer plugin:
#
.idea/mongoSettings.xml
.idea/mongoSettings.xml
## File-based project format:
*.ipr
*.iws
## Plugin-specific files:
...
...
Global/Linux.gitignore
View file @
6ac648f0
*~
# temporary files which can be created if a process still has a handle open of a deleted file
.fuse_hidden*
# KDE directory preferences
.directory
...
...
Global/Matlab.gitignore
View file @
6ac648f0
...
...
@@ -14,3 +14,6 @@
# Simulink Code Generation
slprj/
# Session info
octave-workspace
Global/MicrosoftOffice.gitignore
View file @
6ac648f0
...
...
@@ -8,3 +8,6 @@
# Excel Backup File
*.xlk
# PowerPoint temporary
~$*.ppt*
Global/NetBeans.gitignore
View file @
6ac648f0
...
...
@@ -4,5 +4,4 @@ nbbuild/
dist/
nbdist/
nbactions.xml
nb-configuration.xml
.nb-gradle/
Global/Vim.gitignore
View file @
6ac648f0
# swap
[._]*.s[a-w][a-z]
[._]s[a-w][a-z]
*.un~
# session
Session.vim
# temporary
.netrwhist
*~
Global/VirtualEnv.gitignore
View file @
6ac648f0
...
...
@@ -4,7 +4,9 @@
[Bb]in
[Ii]nclude
[Ll]ib
[Ll]ib64
[Ll]ocal
[Ss]cripts
pyvenv.cfg
.venv
pip-selfcheck.json
Global/Xcode.gitignore
View file @
6ac648f0
...
...
@@ -4,7 +4,7 @@
## Build generated
build/
DerivedData
DerivedData
/
## Various settings
*.pbxuser
...
...
@@ -15,9 +15,9 @@ DerivedData
!default.mode2v3
*.perspectivev3
!default.perspectivev3
xcuserdata
xcuserdata
/
## Other
*.xccheckout
*.moved-aside
*.xcuserstate
*.xccheckout
*.xcscmblueprint
Global/XilinxISE.gitignore
View file @
6ac648f0
...
...
@@ -42,6 +42,16 @@
*_usage.xml
*_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
*.gise
par_usage_statistics.html
...
...
Gradle.gitignore
View file @
6ac648f0
...
...
@@ -9,3 +9,6 @@ gradle-app.setting
# Cache of project
.gradletasknamecache
# # Work around https://youtrack.jetbrains.com/issue/IDEA-116898
# gradle/wrapper/gradle-wrapper.properties
Joomla.gitignore
View file @
6ac648f0
...
...
@@ -296,6 +296,7 @@
/components/com_wrapper/*
/components/index.html
/images/banners/*
/images/headers/*
/images/sampledata/*
/images/joomla*
/images/index.html
...
...
@@ -309,6 +310,7 @@
/language/en-GB/en-GB.com_tags.ini
/language/en-GB/en-GB.finder_cli.ini
/language/en-GB/en-GB.lib_fof.sys.ini
/language/en-GB/en-GB.lib_fof.ini
/language/en-GB/en-GB.com_content.ini
/language/en-GB/en-GB.lib_idna_convert.sys.ini
/language/en-GB/en-GB.com_mailto.ini
...
...
@@ -395,21 +397,36 @@
/language/en-GB/install.xml
/language/overrides/*
/language/index.html
/layouts/joomla/*
/layouts/libraries/*
/layouts/plugins/*
/layouts/index.html
/libraries/cms.php
/libraries/cms/*
/libraries/fof/*
/libraries/idna_convert/*
/libraries/joomla/*
/libraries/legacy/*
/libraries/phpass/*
/libraries/phpmailer/*
/libraries/phputf8/*
/libraries/simplepie/*
/libraries/vendor/*
/libraries/classmap.php
/libraries/import.legacy.php
/libraries/index.html
/libraries/import.php
/libraries/loader.php
/libraries/platform.php
/logs/*
/media/cms/*
/media/com_contenthistory/*
/media/com_finder/*
/media/com_joomlaupdate/*
/media/com_wrapper/*
/media/contacts/*
/media/editors/*
/media/jui/*
/media/mailto/*
/media/media/*
/media/mod_languages/*
...
...
@@ -439,6 +456,8 @@
/modules/mod_search/*
/modules/mod_stats/*
/modules/mod_syndicate/*
/modules/mod_tags_popular/*
/modules/mod_tags_similar/*
/modules/mod_users_latest/*
/modules/mod_weblinks/*
/modules/mod_whosonline/*
...
...
@@ -448,6 +467,7 @@
/plugins/authentication/gmail/*
/plugins/authentication/joomla/*
/plugins/authentication/ldap/*
/plugins/authentication/cookie/*
/plugins/authentication/index.html
/plugins/captcha/recaptcha/*
/plugins/captcha/index.html
...
...
@@ -523,3 +543,4 @@
/index.php
/joomla.xml
/*.txt
/robots.txt.dist
LICENSE
View file @
6ac648f0
Copyright (c) 201
4
GitHub, Inc.
Copyright (c) 201
6
GitHub, Inc.
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),
...
...
Laravel.gitignore
View file @
6ac648f0
/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
.env.example
\ No newline at end of file
Node.gitignore
View file @
6ac648f0
...
...
@@ -24,5 +24,10 @@ coverage
build/Release
# Dependency directory
# https://docs.npmjs.com/misc/faq#should-i-check-my-node-modules-folder-into-git
node_modules
# Optional npm cache directory
.npm
# Optional REPL history
.node_repl_history
Objective-C.gitignore
View file @
6ac648f0
...
...
@@ -4,7 +4,7 @@
## Build generated
build/
DerivedData
DerivedData
/
## Various settings
*.pbxuser
...
...
@@ -15,12 +15,11 @@ DerivedData
!default.mode2v3
*.perspectivev3
!default.perspectivev3
xcuserdata
xcuserdata
/
## Other
*.xccheckout
*.moved-aside
*.xc
userstate
*.xc
checkout
*.xcscmblueprint
## Obj-C/Swift specific
...
...
@@ -31,9 +30,9 @@ xcuserdata
#
# We recommend against adding the Pods directory to your .gitignore. However
# 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
# http
s
://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
#
#Pods/
#
Pods/
# Carthage
#
...
...
@@ -41,3 +40,13 @@ xcuserdata
# Carthage/Checkouts
Carthage/Build
# fastlane
#
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
# screenshots whenever they are needed.
# For more information about the recommended setup visit:
# https://github.com/fastlane/fastlane/blob/master/docs/Gitignore.md
fastlane/report.xml
fastlane/screenshots
OpenCart.gitignore
View file @
6ac648f0
...
...
@@ -9,3 +9,5 @@ image/data/
image/cache/
system/cache/
system/logs/
system/storage/
PlayFramework.gitignore
View file @
6ac648f0
...
...
@@ -5,7 +5,6 @@ bin/
/lib/
/logs/
/modules
/project/project
/project/target
/target
tmp/
...
...
Python.gitignore
View file @
6ac648f0
...
...
@@ -43,6 +43,7 @@ htmlcov/
nosetests.xml
coverage.xml
*,cover
.hypothesis/
# Translations
*.mo
...
...
@@ -50,9 +51,17 @@ coverage.xml
# Django stuff:
*.log
local_settings.py
# Sphinx documentation
docs/_build/
# PyBuilder
target/
# Ipython Notebook
.ipynb_checkpoints
# pyenv
.python-version
Qt.gitignore
View file @
6ac648f0
...
...
@@ -23,7 +23,7 @@ moc_*.cpp
qrc_*.cpp
ui_*.h
Makefile*
*
-
build-*
*build-*
# QtCreator
...
...
@@ -32,3 +32,7 @@ Makefile*
#QtCtreator Qml
*.qmlproject.user
*.qmlproject.user.*
#QtCtreator CMake
CMakeLists.txt.user
Rails.gitignore
View file @
6ac648f0
...
...
@@ -16,11 +16,11 @@ pickle-email-*.html
config/initializers/secret_token.rb
config/secrets.yml
## Environment normali
s
ation:
## Environment normali
z
ation:
/.bundle
/vendor/bundle
# these should all be checked in to normali
s
e the environment:
# these should all be checked in to normali
z
e the environment:
# Gemfile.lock, .ruby-version, .ruby-gemset
# unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
...
...
@@ -33,3 +33,6 @@ bower.json
# Ignore pow environment settings
.powenv
# Ignore Byebug command history file.
.byebug_history
Ruby.gitignore
View file @
6ac648f0
...
...
@@ -21,7 +21,7 @@ build/
/doc/
/rdoc/
## Environment normali
s
ation:
## Environment normali
z
ation:
/.bundle/
/vendor/bundle
/lib/bundler/man/
...
...
Rust.gitignore
View file @
6ac648f0
...
...
@@ -9,3 +9,7 @@
# Generated by Cargo
/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
Swift.gitignore
View file @
6ac648f0
...
...
@@ -4,7 +4,7 @@
## Build generated
build/
DerivedData
DerivedData
/
## Various settings
*.pbxuser
...
...
@@ -15,23 +15,32 @@ DerivedData
!default.mode2v3
*.perspectivev3
!default.perspectivev3
xcuserdata
xcuserdata
/
## Other
*.xccheckout
*.moved-aside
*.xc
userstate
*.xc
checkout
*.xcscmblueprint
## Obj-C/Swift specific
*.hmap
*.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
#
# We recommend against adding the Pods directory to your .gitignore. However
# 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
# http
s://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into
-source-control
#
# Pods/
...
...
@@ -41,3 +50,13 @@ xcuserdata
# Carthage/Checkouts
Carthage/Build
# fastlane
#
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
# screenshots whenever they are needed.
# For more information about the recommended setup visit:
# https://github.com/fastlane/fastlane/blob/master/docs/Gitignore.md
fastlane/report.xml
fastlane/screenshots
Symfony.gitignore
View file @
6ac648f0
...
...
@@ -26,6 +26,9 @@
/web/bundles/
/web/uploads/
# Assets managed by Bower
/web/assets/vendor/
# PHPUnit
/app/phpunit.xml
/phpunit.xml
...
...
TeX.gitignore
View file @
6ac648f0
...
...
@@ -6,6 +6,7 @@
*.fls
*.out
*.toc
*.fmt
## Intermediate documents:
*.dvi
...
...
@@ -32,8 +33,6 @@
*.pdfsync
## Auxiliary and intermediate files from other packages:
# algorithms
*.alg
*.loa
...
...
@@ -49,8 +48,15 @@ acs-*.bib
*.snm
*.vrb
#(e)ledmac/(e)ledpar
# cprotect
*.cpt
# fixme
*.lox
#(r)(e)ledmac/(r)(e)ledpar
*.end
*.?end
*.[1-9]
*.[1-9][0-9]
*.[1-9][0-9][0-9]
...
...
@@ -93,6 +99,8 @@ acs-*.bib
# minitoc
*.maf
*.mlf
*.mlt
*.mtc
*.mtc[0-9]
*.mtc[1-9][0-9]
...
...
@@ -120,6 +128,17 @@ _minted*
*.sympy
sympy-plots-for-*.tex/
# pdfcomment
*.upa
*.upb
#pythontex
*.pytxcode
pythontex-files-*/
# Texpad
.texpadtmp
# TikZ & PGF
*.dpth
*.md5
...
...
@@ -131,6 +150,16 @@ sympy-plots-for-*.tex/
# xindy
*.xdy
# xypic precompiled matrices
*.xyc
# WinEdt
*.bak
*.sav
# endfloat
*.ttt
*.fff
# Latexian
TSWLatexianTemp*
Typo3.gitignore
View file @
6ac648f0
## TYPO3 v6.2
# Ignore se
r
veral upload and file directories.
# Ignore several upload and file directories.
/fileadmin/user_upload/
/fileadmin/_temp_/
/fileadmin/_processed_/
...
...
Umbraco.gitignore
View file @
6ac648f0
# Note: VisualStudio gitignore rules may also be relevant
# Umbraco
# Ignore unimportant folders generated by Umbraco
**/App_Data/ClientDependency/
**/App_Data/ExamineIndexes/
**/App_Data/Logs/
**/App_Data/[Pp]review/
**/App_Data/TEMP/
Cached
/
**/App_Data/NuGetBackup
/
# Ignore Umbraco content cache file
**/App_Data/umbraco.config
...
...
@@ -15,3 +14,6 @@ Cached/
# Make sure to include details from VisualStudio.gitignore BEFORE this
!**/App_Data/[Pp]ackages/
!**/[Uu]mbraco/[Dd]eveloper/[Pp]ackages
# ImageProcessor DiskCache
**/App_Data/cache/
Unity.gitignore
View file @
6ac648f0
...
...
@@ -2,8 +2,11 @@
/[Tt]emp/
/[Oo]bj/
/[Bb]uild/
/[Bb]uilds/
/Assets/AssetStoreTools*
# Autogenerated VS/MD solution and project files
ExportedObj/
*.csproj
*.unityproj
*.sln
...
...
@@ -13,9 +16,15 @@
*.userprefs
*.pidb
*.booproj
*.svd
# Unity3D generated meta files
*.pidb.meta
# Unity3D Generated File On Crash Reports
sysinfo.txt
# Builds
*.apk
*.unitypackage
UnrealEngine.gitignore
0 → 100644
View file @
6ac648f0
# 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/*
VisualStudio.gitignore
View file @
6ac648f0
...
...
@@ -17,10 +17,10 @@
[Rr]eleases/
x64/
x86/
build/
bld/
[Bb]in/
[Oo]bj/
[Ll]og/
# Visual Studio 2015 cache/options directory
.vs/
...
...
@@ -76,6 +76,7 @@ _Chutzpah*
ipch/
*.aps
*.ncb
*.opendb
*.opensdf
*.sdf
*.cachefile
...
...
@@ -150,13 +151,24 @@ publish/
!**/packages/build/
# Uncomment if necessary however generally it will be regenerated when needed
#!**/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/
*.build.csdef
# Microsoft Azure Emulator
ecf/
rcf/
# Microsoft Azure ApplicationInsights config file
ApplicationInsights.config
# Windows Store app package directory
AppPackages/
BundleArtifacts/
# Visual Studio cache files
# files ending in .cache can be ignored
...
...
@@ -166,7 +178,6 @@ AppPackages/
# Others
ClientBin/
[Ss]tyle[Cc]op.*
~$*
*~
*.dbmdl
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment