Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Jérome Perrin
gitlab-ce
Commits
fbef5676
Commit
fbef5676
authored
Feb 07, 2017
by
James Lopez
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'update-gitignore-templates' into 'master'
Update .gitignore templates See merge request !9015
parents
5bfa6afd
57191b72
Changes
24
Hide whitespace changes
Inline
Side-by-side
Showing
24 changed files
with
141 additions
and
179 deletions
+141
-179
vendor/gitignore/Android.gitignore
vendor/gitignore/Android.gitignore
+8
-0
vendor/gitignore/CMake.gitignore
vendor/gitignore/CMake.gitignore
+1
-0
vendor/gitignore/CodeIgniter.gitignore
vendor/gitignore/CodeIgniter.gitignore
+6
-0
vendor/gitignore/Global/JetBrains.gitignore
vendor/gitignore/Global/JetBrains.gitignore
+12
-12
vendor/gitignore/Global/Matlab.gitignore
vendor/gitignore/Global/Matlab.gitignore
+3
-0
vendor/gitignore/Global/Stata.gitignore
vendor/gitignore/Global/Stata.gitignore
+24
-0
vendor/gitignore/Go.gitignore
vendor/gitignore/Go.gitignore
+7
-23
vendor/gitignore/Java.gitignore
vendor/gitignore/Java.gitignore
+6
-0
vendor/gitignore/Joomla.gitignore
vendor/gitignore/Joomla.gitignore
+0
-27
vendor/gitignore/KiCad.gitignore
vendor/gitignore/KiCad.gitignore
+2
-1
vendor/gitignore/Laravel.gitignore
vendor/gitignore/Laravel.gitignore
+4
-0
vendor/gitignore/Magento.gitignore
vendor/gitignore/Magento.gitignore
+16
-104
vendor/gitignore/Node.gitignore
vendor/gitignore/Node.gitignore
+11
-2
vendor/gitignore/Objective-C.gitignore
vendor/gitignore/Objective-C.gitignore
+2
-1
vendor/gitignore/Perl.gitignore
vendor/gitignore/Perl.gitignore
+1
-0
vendor/gitignore/PureScript.gitignore
vendor/gitignore/PureScript.gitignore
+8
-0
vendor/gitignore/Python.gitignore
vendor/gitignore/Python.gitignore
+1
-1
vendor/gitignore/Scala.gitignore
vendor/gitignore/Scala.gitignore
+2
-0
vendor/gitignore/Swift.gitignore
vendor/gitignore/Swift.gitignore
+3
-1
vendor/gitignore/Unity.gitignore
vendor/gitignore/Unity.gitignore
+4
-0
vendor/gitignore/UnrealEngine.gitignore
vendor/gitignore/UnrealEngine.gitignore
+4
-0
vendor/gitignore/VisualStudio.gitignore
vendor/gitignore/VisualStudio.gitignore
+6
-2
vendor/gitignore/Waf.gitignore
vendor/gitignore/Waf.gitignore
+9
-4
vendor/gitlab-ci-yml/autodeploy/Kubernetes.gitlab-ci.yml
vendor/gitlab-ci-yml/autodeploy/Kubernetes.gitlab-ci.yml
+1
-1
No files found.
vendor/gitignore/Android.gitignore
View file @
fbef5676
...
@@ -44,3 +44,11 @@ captures/
...
@@ -44,3 +44,11 @@ captures/
# 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
# Google Services (e.g. APIs or Firebase)
google-services.json
#Freeline
freeline.py
freeline/
freeline_project_description.json
vendor/gitignore/CMake.gitignore
View file @
fbef5676
CMakeCache.txt
CMakeCache.txt
CMakeFiles
CMakeFiles
CMakeScripts
CMakeScripts
Testing
Makefile
Makefile
cmake_install.cmake
cmake_install.cmake
install_manifest.txt
install_manifest.txt
...
...
vendor/gitignore/CodeIgniter.gitignore
View file @
fbef5676
...
@@ -9,3 +9,9 @@ user_guide_src/build/*
...
@@ -9,3 +9,9 @@ user_guide_src/build/*
user_guide_src/cilexer/build/*
user_guide_src/cilexer/build/*
user_guide_src/cilexer/dist/*
user_guide_src/cilexer/dist/*
user_guide_src/cilexer/pycilexer.egg-info/*
user_guide_src/cilexer/pycilexer.egg-info/*
#codeigniter 3
application/logs/*
!application/logs/index.html
!application/logs/.htaccess
/vendor/
vendor/gitignore/Global/JetBrains.gitignore
View file @
fbef5676
...
@@ -2,24 +2,24 @@
...
@@ -2,24 +2,24 @@
# 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
# Sensitive or high-churn files:
# Sensitive or high-churn files:
.idea/dataSources/
.idea/
**/
dataSources/
.idea/dataSources.ids
.idea/
**/
dataSources.ids
.idea/dataSources.xml
.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
# 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:
*.iws
*.iws
...
...
vendor/gitignore/Global/Matlab.gitignore
View file @
fbef5676
...
@@ -17,3 +17,6 @@ slprj/
...
@@ -17,3 +17,6 @@ slprj/
# Session info
# Session info
octave-workspace
octave-workspace
# Simulink autosave extension
.autosave
vendor/gitignore/Global/Stata.gitignore
0 → 100644
View file @
fbef5676
# .gitignore file for git projects containing Stata files
# Commercial statistical software: http://www.stata.com
# Stata dataset and output files
*.dta
*.gph
*.log
*.smcl
*.stpr
*.stsem
# Graphic export files from Stata
# Stata command graph export: http://www.stata.com/manuals14/g-2graphexport.pdf
#
# You may add graphic export files to your .gitignore. However you should be
# aware that this will exclude all image files from this main directory
# and subdirectories.
# *.ps
# *.eps
# *.wmf
# *.emf
# *.pdf
# *.png
# *.tif
vendor/gitignore/Go.gitignore
View file @
fbef5676
#
Compiled Object files, Static and Dynamic libs (Shared Objects)
#
Binaries for programs and plugins
*.
o
*.
exe
*.
a
*.
dll
*.so
*.so
*.dylib
# Folders
# Test binary, build with `go test -c`
_obj
_test
# Architecture specific extensions/prefixes
*.[568vq]
[568vq].out
*.cgo1.go
*.cgo2.c
_cgo_defun.c
_cgo_gotypes.go
_cgo_export.*
_testmain.go
*.exe
*.test
*.test
*.prof
# Output of the go coverage tool, specifically when used with LiteIDE
# Output of the go coverage tool, specifically when used with LiteIDE
*.out
*.out
#
External packages folder
#
Project-local glide cache, RE: https://github.com/Masterminds/glide/issues/736
vendor
/
.glide
/
vendor/gitignore/Java.gitignore
View file @
fbef5676
*.class
*.class
# Log file
*.log
# BlueJ files
# BlueJ files
*.ctxt
*.ctxt
...
@@ -10,6 +13,9 @@
...
@@ -10,6 +13,9 @@
*.jar
*.jar
*.war
*.war
*.ear
*.ear
*.zip
*.tar.gz
*.rar
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid*
hs_err_pid*
vendor/gitignore/Joomla.gitignore
View file @
fbef5676
...
@@ -29,8 +29,6 @@
...
@@ -29,8 +29,6 @@
/administrator/components/com_search/*
/administrator/components/com_search/*
/administrator/components/com_templates/*
/administrator/components/com_templates/*
/administrator/components/com_users/*
/administrator/components/com_users/*
/administrator/components/com_weblinks/*
/administrator/components/index.html
/administrator/help/*
/administrator/help/*
/administrator/includes/*
/administrator/includes/*
/administrator/language/en-GB/en-GB.com_ajax.ini
/administrator/language/en-GB/en-GB.com_ajax.ini
...
@@ -41,7 +39,6 @@
...
@@ -41,7 +39,6 @@
/administrator/language/en-GB/en-GB.com_joomlaupdate.sys.ini
/administrator/language/en-GB/en-GB.com_joomlaupdate.sys.ini
/administrator/language/en-GB/en-GB.com_postinstall.ini
/administrator/language/en-GB/en-GB.com_postinstall.ini
/administrator/language/en-GB/en-GB.com_postinstall.sys.ini
/administrator/language/en-GB/en-GB.com_postinstall.sys.ini
/administrator/language/en-GB/en-GB.com_sitemapjen.sys.ini
/administrator/language/en-GB/en-GB.com_tags.ini
/administrator/language/en-GB/en-GB.com_tags.ini
/administrator/language/en-GB/en-GB.com_tags.sys.ini
/administrator/language/en-GB/en-GB.com_tags.sys.ini
/administrator/language/en-GB/en-GB.mod_stats_admin.ini
/administrator/language/en-GB/en-GB.mod_stats_admin.ini
...
@@ -250,15 +247,10 @@
...
@@ -250,15 +247,10 @@
/administrator/language/en-GB/en-GB.plg_user_joomla.sys.ini
/administrator/language/en-GB/en-GB.plg_user_joomla.sys.ini
/administrator/language/en-GB/en-GB.plg_user_profile.ini
/administrator/language/en-GB/en-GB.plg_user_profile.ini
/administrator/language/en-GB/en-GB.plg_user_profile.sys.ini
/administrator/language/en-GB/en-GB.plg_user_profile.sys.ini
/administrator/language/en-GB/en-GB.tpl_bluestork.ini
/administrator/language/en-GB/en-GB.tpl_bluestork.sys.ini
/administrator/language/en-GB/en-GB.tpl_hathor.ini
/administrator/language/en-GB/en-GB.tpl_hathor.ini
/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/en-GB/index.html
/administrator/language/ru-RU/index.html
/administrator/language/overrides/*
/administrator/language/overrides/*
/administrator/language/index.html
/administrator/logs/index.html
/administrator/logs/index.html
/administrator/manifests/*
/administrator/manifests/*
/administrator/modules/mod_custom/*
/administrator/modules/mod_custom/*
...
@@ -278,12 +270,9 @@
...
@@ -278,12 +270,9 @@
/administrator/modules/mod_unread/*
/administrator/modules/mod_unread/*
/administrator/modules/mod_version/*
/administrator/modules/mod_version/*
/administrator/modules/mod_stats_admin/*
/administrator/modules/mod_stats_admin/*
/administrator/modules/index.html
/administrator/templates/bluestork/*
/administrator/templates/isis/*
/administrator/templates/isis/*
/administrator/templates/hathor/*
/administrator/templates/hathor/*
/administrator/templates/system/*
/administrator/templates/system/*
/administrator/templates/index.html
/administrator/index.php
/administrator/index.php
/cache/*
/cache/*
/bin/*
/bin/*
...
@@ -302,7 +291,6 @@
...
@@ -302,7 +291,6 @@
/components/com_newsfeeds/*
/components/com_newsfeeds/*
/components/com_search/*
/components/com_search/*
/components/com_users/*
/components/com_users/*
/components/com_weblinks/*
/components/com_wrapper/*
/components/com_wrapper/*
/components/index.html
/components/index.html
/images/banners/*
/images/banners/*
...
@@ -403,7 +391,6 @@
...
@@ -403,7 +391,6 @@
/language/en-GB/en-GB.tpl_beez5.ini
/language/en-GB/en-GB.tpl_beez5.ini
/language/en-GB/en-GB.tpl_beez5.sys.ini
/language/en-GB/en-GB.tpl_beez5.sys.ini
/language/en-GB/en-GB.xml
/language/en-GB/en-GB.xml
/language/en-GB/index.html
/language/en-GB/install.xml
/language/en-GB/install.xml
/language/overrides/*
/language/overrides/*
/language/index.html
/language/index.html
...
@@ -428,8 +415,6 @@
...
@@ -428,8 +415,6 @@
/libraries/index.html
/libraries/index.html
/libraries/import.php
/libraries/import.php
/libraries/loader.php
/libraries/loader.php
/libraries/platform.php
/logs/*
/media/cms/*
/media/cms/*
/media/com_contenthistory/*
/media/com_contenthistory/*
/media/com_finder/*
/media/com_finder/*
...
@@ -472,7 +457,6 @@
...
@@ -472,7 +457,6 @@
/modules/mod_tags_popular/*
/modules/mod_tags_popular/*
/modules/mod_tags_similar/*
/modules/mod_tags_similar/*
/modules/mod_users_latest/*
/modules/mod_users_latest/*
/modules/mod_weblinks/*
/modules/mod_whosonline/*
/modules/mod_whosonline/*
/modules/mod_wrapper/*
/modules/mod_wrapper/*
/modules/index.html
/modules/index.html
...
@@ -481,9 +465,7 @@
...
@@ -481,9 +465,7 @@
/plugins/authentication/joomla/*
/plugins/authentication/joomla/*
/plugins/authentication/ldap/*
/plugins/authentication/ldap/*
/plugins/authentication/cookie/*
/plugins/authentication/cookie/*
/plugins/authentication/index.html
/plugins/captcha/recaptcha/*
/plugins/captcha/recaptcha/*
/plugins/captcha/index.html
/plugins/content/emailcloak/*
/plugins/content/emailcloak/*
/plugins/content/example/*
/plugins/content/example/*
/plugins/content/finder/*
/plugins/content/finder/*
...
@@ -494,27 +476,21 @@
...
@@ -494,27 +476,21 @@
/plugins/content/pagenavigation/*
/plugins/content/pagenavigation/*
/plugins/content/vote/*
/plugins/content/vote/*
/plugins/content/contact/*
/plugins/content/contact/*
/plugins/content/index.html
/plugins/editors/codemirror/*
/plugins/editors/codemirror/*
/plugins/editors/none/*
/plugins/editors/none/*
/plugins/editors/tinymce/*
/plugins/editors/tinymce/*
/plugins/editors/index.html
/plugins/editors-xtd/module/*
/plugins/editors-xtd/module/*
/plugins/editors-xtd/article/*
/plugins/editors-xtd/article/*
/plugins/editors-xtd/image/*
/plugins/editors-xtd/image/*
/plugins/editors-xtd/pagebreak/*
/plugins/editors-xtd/pagebreak/*
/plugins/editors-xtd/readmore/*
/plugins/editors-xtd/readmore/*
/plugins/editors-xtd/index.html
/plugins/extension/example/*
/plugins/extension/example/*
/plugins/extension/joomla/*
/plugins/extension/joomla/*
/plugins/extension/index.html
/plugins/finder/index.html
/plugins/finder/categories/*
/plugins/finder/categories/*
/plugins/finder/contacts/*
/plugins/finder/contacts/*
/plugins/finder/content/*
/plugins/finder/content/*
/plugins/finder/newsfeeds/*
/plugins/finder/newsfeeds/*
/plugins/finder/tags/*
/plugins/finder/tags/*
/plugins/finder/weblinks/*
/plugins/installer/*
/plugins/installer/*
/plugins/quickicon/extensionupdate/*
/plugins/quickicon/extensionupdate/*
/plugins/quickicon/joomlaupdate/*
/plugins/quickicon/joomlaupdate/*
...
@@ -547,10 +523,7 @@
...
@@ -547,10 +523,7 @@
/plugins/user/profile/*
/plugins/user/profile/*
/plugins/user/index.html
/plugins/user/index.html
/plugins/index.html
/plugins/index.html
/templates/atomic/*
/templates/beez3/*
/templates/beez3/*
/templates/beez_20/*
/templates/beez5/*
/templates/protostar/*
/templates/protostar/*
/templates/system/*
/templates/system/*
/templates/index.html
/templates/index.html
...
...
vendor/gitignore/KiCad.gitignore
View file @
fbef5676
...
@@ -13,7 +13,8 @@ _autosave-*
...
@@ -13,7 +13,8 @@ _autosave-*
*.net
*.net
# Autorouter files (exported from Pcbnew)
# Autorouter files (exported from Pcbnew)
.dsn
*.dsn
*.ses
# Exported BOM files
# Exported BOM files
*.xml
*.xml
...
...
vendor/gitignore/Laravel.gitignore
View file @
fbef5676
vendor/
vendor/
node_modules/
node_modules/
npm-debug.log
# Laravel 4 specific
# Laravel 4 specific
bootstrap/compiled.php
bootstrap/compiled.php
...
@@ -7,10 +8,13 @@ app/storage/
...
@@ -7,10 +8,13 @@ app/storage/
# Laravel 5 & Lumen specific
# Laravel 5 & Lumen specific
public/storage
public/storage
public/hot
storage/*.key
storage/*.key
.env.*.php
.env.*.php
.env.php
.env.php
.env
.env
Homestead.yaml
Homestead.json
# Rocketeer PHP task runner and deployment package. https://github.com/rocketeers/rocketeer
# Rocketeer PHP task runner and deployment package. https://github.com/rocketeers/rocketeer
.rocketeer/
.rocketeer/
vendor/gitignore/Magento.gitignore
View file @
fbef5676
.htaccess.sample
#--------------------------#
.modgit/
# Magento Default Files #
.modman/
#--------------------------#
app/code/community/Phoenix/Moneybookers/
app/code/community/Cm/RedisSession/
/app/etc/local.xml
app/code/core/
/media/*
app/design/adminhtml/default/default/
!/media/.htaccess
app/design/frontend/base/
!/media/customer/.htaccess
app/design/frontend/rwd/
!/media/dhl/logo.jpg
app/design/frontend/default/blank/
!/media/downloadable/.htaccess
app/design/frontend/default/default/
!/media/xmlconnect/custom/ok.gif
app/design/frontend/default/iphone/
!/media/xmlconnect/original/ok.gif
app/design/frontend/default/modern/
!/media/xmlconnect/system/ok.gif
app/design/frontend/enterprise/default
/var/*
app/design/install/
!/var/.htaccess
app/etc/modules/Enterprise_*
!/var/package/*.xml
app/etc/modules/Mage_*.xml
app/etc/modules/Phoenix_Moneybookers.xml
app/etc/modules/Cm_RedisSession.xml
app/etc/applied.patches.list
app/etc/config.xml
app/etc/enterprise.xml
app/etc/local.xml.additional
app/etc/local.xml.template
app/etc/local.xml
app/.htaccess
app/bootstrap.php
app/locale/en_US/
app/Mage.php
/cron.php
cron.sh
dev/.htaccess
dev/tests/functional/
downloader/
errors/
favicon.ico
/get.php
includes/
/index.php
index.php.sample
/install.php
js/blank.html
js/calendar/
js/enterprise/
js/extjs/
js/firebug/
js/flash/
js/index.php
js/jscolor/
js/lib/
js/mage/
js/prototype/
js/scriptaculous/
js/spacer.gif
js/tiny_mce/
js/varien/
lib/3Dsecure/
lib/Apache/
lib/flex/
lib/googlecheckout/
lib/.htaccess
lib/LinLibertineFont/
lib/Mage/
lib/PEAR/
lib/Pelago/
lib/phpseclib/
lib/Varien/
lib/Zend/
lib/Cm/
lib/Credis/
lib/Magento/
LICENSE_AFL.txt
LICENSE.html
LICENSE.txt
LICENSE_EE*
/mage
media/
/api.php
nbproject/
pear
pear/
php.ini.sample
pkginfo/
RELEASE_NOTES.txt
shell/.htaccess
shell/abstract.php
shell/compiler.php
shell/indexer.php
shell/log.php
sitemap.xml
skin/adminhtml/default/default/
skin/adminhtml/default/enterprise
skin/frontend/base/
skin/frontend/rwd/
skin/frontend/default/blank/
skin/frontend/default/blue/
skin/frontend/default/default/
skin/frontend/default/french/
skin/frontend/default/german/
skin/frontend/default/iphone/
skin/frontend/default/modern/
skin/frontend/enterprise
skin/install/
var/
vendor/gitignore/Node.gitignore
View file @
fbef5676
...
@@ -21,6 +21,9 @@ coverage
...
@@ -21,6 +21,9 @@ coverage
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
.grunt
.grunt
# Bower dependency directory (https://bower.io/)
bower_components
# node-waf configuration
# node-waf configuration
.lock-wscript
.lock-wscript
...
@@ -28,8 +31,11 @@ coverage
...
@@ -28,8 +31,11 @@ coverage
build/Release
build/Release
# Dependency directories
# Dependency directories
node_modules
node_modules/
jspm_packages
jspm_packages/
# Typescript v1 declaration files
typings/
# Optional npm cache directory
# Optional npm cache directory
.npm
.npm
...
@@ -46,3 +52,6 @@ jspm_packages
...
@@ -46,3 +52,6 @@ jspm_packages
# Yarn Integrity file
# Yarn Integrity file
.yarn-integrity
.yarn-integrity
# dotenv environment variables file
.env
vendor/gitignore/Objective-C.gitignore
View file @
fbef5676
...
@@ -19,7 +19,8 @@ xcuserdata/
...
@@ -19,7 +19,8 @@ xcuserdata/
## Other
## Other
*.moved-aside
*.moved-aside
*.xcuserstate
*.xccheckout
*.xcscmblueprint
## Obj-C/Swift specific
## Obj-C/Swift specific
*.hmap
*.hmap
...
...
vendor/gitignore/Perl.gitignore
View file @
fbef5676
...
@@ -4,6 +4,7 @@
...
@@ -4,6 +4,7 @@
/META.json
/META.json
/MYMETA.*
/MYMETA.*
*.o
*.o
*.pm.tdy
*.bs
*.bs
# Devel::Cover
# Devel::Cover
...
...
vendor/gitignore/PureScript.gitignore
0 → 100644
View file @
fbef5676
# Dependencies
.psci_modules
bower_components
node_modules
# Generated files
.psci
output
vendor/gitignore/Python.gitignore
View file @
fbef5676
...
@@ -80,7 +80,7 @@ celerybeat-schedule
...
@@ -80,7 +80,7 @@ celerybeat-schedule
.env
.env
# virtualenv
# virtualenv
.venv
/
.venv
venv/
venv/
ENV/
ENV/
...
...
vendor/gitignore/Scala.gitignore
View file @
fbef5676
...
@@ -13,6 +13,8 @@ project/boot/
...
@@ -13,6 +13,8 @@ project/boot/
project/plugins/project/
project/plugins/project/
# Scala-IDE specific
# Scala-IDE specific
.ensime
.ensime_cache/
.scala_dependencies
.scala_dependencies
.worksheet
.worksheet
...
...
vendor/gitignore/Swift.gitignore
View file @
fbef5676
...
@@ -19,7 +19,8 @@ xcuserdata/
...
@@ -19,7 +19,8 @@ xcuserdata/
## Other
## Other
*.moved-aside
*.moved-aside
*.xcuserstate
*.xccheckout
*.xcscmblueprint
## Obj-C/Swift specific
## Obj-C/Swift specific
*.hmap
*.hmap
...
@@ -35,6 +36,7 @@ playground.xcworkspace
...
@@ -35,6 +36,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
.build/
.build/
# CocoaPods
# CocoaPods
...
...
vendor/gitignore/Unity.gitignore
View file @
fbef5676
...
@@ -5,6 +5,9 @@
...
@@ -5,6 +5,9 @@
/[Bb]uilds/
/[Bb]uilds/
/Assets/AssetStoreTools*
/Assets/AssetStoreTools*
# Visual Studio 2015 cache directory
/.vs/
# Autogenerated VS/MD/Consulo solution and project files
# Autogenerated VS/MD/Consulo solution and project files
ExportedObj/
ExportedObj/
.consulo/
.consulo/
...
@@ -18,6 +21,7 @@ ExportedObj/
...
@@ -18,6 +21,7 @@ ExportedObj/
*.pidb
*.pidb
*.booproj
*.booproj
*.svd
*.svd
*.pdb
# Unity3D generated meta files
# Unity3D generated meta files
...
...
vendor/gitignore/UnrealEngine.gitignore
View file @
fbef5676
...
@@ -36,6 +36,7 @@
...
@@ -36,6 +36,7 @@
# These project files can be generated by the engine
# These project files can be generated by the engine
*.xcodeproj
*.xcodeproj
*.xcworkspace
*.sln
*.sln
*.suo
*.suo
*.opensdf
*.opensdf
...
@@ -56,6 +57,9 @@ Build/*
...
@@ -56,6 +57,9 @@ Build/*
# Don't ignore icon files in Build
# Don't ignore icon files in Build
!Build/**/*.ico
!Build/**/*.ico
# Built data for maps
*_BuiltData.uasset
# Configuration files generated by the Editor
# Configuration files generated by the Editor
Saved/*
Saved/*
...
...
vendor/gitignore/VisualStudio.gitignore
View file @
fbef5676
...
@@ -199,7 +199,6 @@ ClientBin/
...
@@ -199,7 +199,6 @@ ClientBin/
*.jfm
*.jfm
*.pfx
*.pfx
*.publishsettings
*.publishsettings
node_modules/
orleans.codegen.cs
orleans.codegen.cs
# Since there are multiple workflows, uncomment next line to ignore bower_components
# Since there are multiple workflows, uncomment next line to ignore bower_components
...
@@ -234,6 +233,10 @@ FakesAssemblies/
...
@@ -234,6 +233,10 @@ FakesAssemblies/
# Node.js Tools for Visual Studio
# Node.js Tools for Visual Studio
.ntvs_analysis.dat
.ntvs_analysis.dat
node_modules/
# Typescript v1 declaration files
typings/
# Visual Studio 6 build log
# Visual Studio 6 build log
*.plg
*.plg
...
@@ -271,4 +274,5 @@ __pycache__/
...
@@ -271,4 +274,5 @@ __pycache__/
*.pyc
*.pyc
# Cake - Uncomment if you are using it
# Cake - Uncomment if you are using it
# tools/
# tools/**
# !tools/packages.config
vendor/gitignore/Waf.gitignore
View file @
fbef5676
# for projects that use Waf for building: http://code.google.com/p/waf/
# For projects that use the Waf build system: https://waf.io/
.waf-*
# Dot-hidden on Unix-like systems
.waf3-*
.waf-*-*/
.lock-*
.waf3-*-*/
# Hidden directory on Windows (no dot)
waf-*-*/
waf3-*-*/
# Lockfile
.lock-waf_*_build
vendor/gitlab-ci-yml/autodeploy/Kubernetes.gitlab-ci.yml
View file @
fbef5676
# Expla
i
nation on the scripts:
# Explanation on the scripts:
# https://gitlab.com/gitlab-examples/kubernetes-deploy/blob/master/README.md
# https://gitlab.com/gitlab-examples/kubernetes-deploy/blob/master/README.md
image
:
registry.gitlab.com/gitlab-examples/kubernetes-deploy
image
:
registry.gitlab.com/gitlab-examples/kubernetes-deploy
...
...
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