diff --git a/Android.gitignore b/Android.gitignore index ccf2efe026cd2d9d9835a6e71175cd0cbaf94eda..c9c2248a6a89bb662c3207eee19d358d10c308b2 100644 --- a/Android.gitignore +++ b/Android.gitignore @@ -15,7 +15,6 @@ gen/ # Gradle files .gradle/ build/ -/*/build/ # Local configuration file (sdk path, etc) local.properties @@ -25,3 +24,9 @@ proguard/ # Log Files *.log + +# Android Studio Navigation editor temp files +.navigation/ + +# Android Studio captures folder +captures/ diff --git a/ArchLinuxPackages.gitignore b/ArchLinuxPackages.gitignore index dcf739000bb59c42cb500a3d6d497aa16e703c1b..b73905529f237733c3690a9355d4730c6c9e61a6 100644 --- a/ArchLinuxPackages.gitignore +++ b/ArchLinuxPackages.gitignore @@ -1,14 +1,13 @@ *.tar *.tar.* +*.jar +*.exe +*.msi *.zip *.tgz *.log *.log.* *.sig -# AUR metadata -.AURINFO -.SRCINFO - pkg/ src/ diff --git a/Autotools.gitignore b/Autotools.gitignore index 053ff52ff3bd9485910016c5d410bc2e3bf162e2..1e9158e2a85f8972b26a901be4be6e1972088885 100644 --- a/Autotools.gitignore +++ b/Autotools.gitignore @@ -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 diff --git a/CMake.gitignore b/CMake.gitignore index 52540e70a8341f6be6b1752bf3c10d65981d4a46..b558e9afa6da4591ea15d0b78a5fd9886eb8d877 100644 --- a/CMake.gitignore +++ b/CMake.gitignore @@ -1,5 +1,6 @@ CMakeCache.txt CMakeFiles +CMakeScripts Makefile cmake_install.cmake install_manifest.txt diff --git a/CodeIgniter.gitignore b/CodeIgniter.gitignore index 846b8c5406f6270dde85b8b07053466ff077f443..0f77d9e1d175c90e6048385f689e35830506bc23 100644 --- a/CodeIgniter.gitignore +++ b/CodeIgniter.gitignore @@ -1,6 +1,6 @@ */config/development */logs/log-*.php -*/logs/!index.html +!*/logs/index.html */cache/* -*/cache/!index.html -*/cache/!.htaccess +!*/cache/index.html +!*/cache/.htaccess diff --git a/Composer.gitignore b/Composer.gitignore index 3a693c92d725810b1caa7cfcd1020474256bc397..c422267842408488b4af853105d157e9021c249b 100644 --- a/Composer.gitignore +++ b/Composer.gitignore @@ -1,5 +1,5 @@ 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 diff --git a/D.gitignore b/D.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..b4433f8a512390abfa1908a00f46a87e13c4e6f6 --- /dev/null +++ b/D.gitignore @@ -0,0 +1,20 @@ +# Compiled Object files +*.o +*.obj + +# Compiled Dynamic libraries +*.so +*.dylib +*.dll + +# Compiled Static libraries +*.a +*.lib + +# Executables +*.exe + +# DUB +.dub +docs.json +__dummy.html diff --git a/Dart.gitignore b/Dart.gitignore index 518345916c35b5c7c582a14a2b51a72803aa8024..7c280441649860d99e9df07c398b32012ea8fffd 100644 --- a/Dart.gitignore +++ b/Dart.gitignore @@ -1,14 +1,27 @@ -# Don’t commit the following directories created by pub. +# See https://www.dartlang.org/tools/private-files.html + +# Files and directories created by pub .buildlog +.packages +.project .pub/ build/ -packages +**/packages/ -# Or the files created by dart2js. +# Files created by dart2js +# (Most Dart developers will use pub build to compile Dart, use/modify these +# rules if you intend to use dart2js directly +# Convention is to use extension '.dart.js' for Dart compiled to Javascript to +# differentiate from explicit Javascript files) *.dart.js -*.js_ +*.part.js *.js.deps *.js.map +*.info.json + +# Directory created by dartdoc +doc/api/ -# Include when developing application packages. +# Don't commit pubspec lock file +# (Library packages only! Remove pattern if developing an application package) pubspec.lock diff --git a/Delphi.gitignore b/Delphi.gitignore index 8d5d458f0d07dcf9c8e359937372bad01614ef40..7af8d6fcaca51521e567690c6e9c73b87e7f178c 100644 --- a/Delphi.gitignore +++ b/Delphi.gitignore @@ -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 diff --git a/Drupal.gitignore b/Drupal.gitignore index 04aed3b676adf50bae613f2b679d5db1b8387d17..0d2fe537f46d8792cf05c1f371ab2df98eab208c 100644 --- a/Drupal.gitignore +++ b/Drupal.gitignore @@ -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 diff --git a/Eagle.gitignore b/Eagle.gitignore index a5410348a2a1d977ff2944a029512eddd995d789..b12e5bfe98ed225734a8422e043726047b46a655 100644 --- a/Eagle.gitignore +++ b/Eagle.gitignore @@ -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 diff --git a/Elixir.gitignore b/Elixir.gitignore index 960767189f7a6b7f9d4b545959c1b6768eba37b6..755b605549d85e74d41a649a0ce9bad1516bcf08 100644 --- a/Elixir.gitignore +++ b/Elixir.gitignore @@ -1,4 +1,5 @@ /_build +/cover /deps erl_crash.dump *.ez diff --git a/Elm.gitignore b/Elm.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..24c03e2866ec81d2c3404f65a8ea4150b8609c84 --- /dev/null +++ b/Elm.gitignore @@ -0,0 +1,5 @@ +# elm-package generated files +elm-package.json +elm-stuff/ +# elm-repl generated files +repl-temp-* diff --git a/Global/Eclipse.gitignore b/Global/Eclipse.gitignore index 81e443040094674627b6fb56b37a9ca89c9ce64d..29a336c2b2b2ea0400136f0f16300563a0b6e2c6 100644 --- a/Global/Eclipse.gitignore +++ b/Global/Eclipse.gitignore @@ -1,6 +1,5 @@ -*.pydevproject + .metadata -.gradle bin/ tmp/ *.tmp @@ -20,17 +19,29 @@ 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) .classpath -# PDT-specific +# Java annotation processor (APT) +.factorypath + +# PDT-specific (PHP Development Tools) .buildpath # sbteclipse plugin .target +# Tern plugin +.tern-project + # TeXlipse plugin .texlipse + +# STS (Spring Tool Suite) +.springBeans diff --git a/Global/EiffelStudio.gitignore b/Global/EiffelStudio.gitignore index a7ba35f8244573159abaab0f96df71ed2ee3499f..f41b4f70216d896c6e9420c3392de9a44f1ed97f 100644 --- a/Global/EiffelStudio.gitignore +++ b/Global/EiffelStudio.gitignore @@ -1,2 +1,2 @@ -# The compilation directoy +# The compilation directory EIFGENs diff --git a/Global/Emacs.gitignore b/Global/Emacs.gitignore index e5327badb18841e5fb7f66dec395af4bff900cb2..95e09ebafb30397943cf7052ff45b353b082e8cd 100644 --- a/Global/Emacs.gitignore +++ b/Global/Emacs.gitignore @@ -30,3 +30,6 @@ tramp # cask packages .cask/ + +# server auth directory +/server/ diff --git a/Global/GPG.gitignore b/Global/GPG.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..7740a01538cdcb5534016b18f2075629342ed658 --- /dev/null +++ b/Global/GPG.gitignore @@ -0,0 +1,2 @@ +secring.* + diff --git a/Global/JetBrains.gitignore b/Global/JetBrains.gitignore index 6b3ea2a7a116130fd3418b7ec163f8a42b7e0e44..2947063ebafbd051e836f4db50a3d75d44908c5f 100644 --- a/Global/JetBrains.gitignore +++ b/Global/JetBrains.gitignore @@ -1,4 +1,4 @@ -# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm +# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm # Reference https://intellij-support.jetbrains.com/entries/23393067 # User-specific stuff: @@ -38,3 +38,4 @@ atlassian-ide-plugin.xml com_crashlytics_export_strings.xml crashlytics.properties crashlytics-build.properties +fabric.properties diff --git a/Global/Lazarus.gitignore b/Global/Lazarus.gitignore index 3ef747d73af0e2d4831829fd0b1a50bda692c757..b32943f1c6e718ae2f8ff201a0c3f3c10d4cfb84 100644 --- a/Global/Lazarus.gitignore +++ b/Global/Lazarus.gitignore @@ -1,15 +1,30 @@ -#ignore backup files -backup/ - -#ignore files generated by the compiler -lib/ +# Lazarus compiler-generated binaries (safe to delete) +*.exe +*.dll +*.so +*.dylib +*.lrs +*.res *.compiled +*.dbg +*.ppu *.o *.or -*.ppu +*.a -#ignore debug information files -*.dbg +# Lazarus autogenerated files (duplicated info) +*.rst +*.rsj +*.lrt -#exclude executable output in windows -*.exe +# Lazarus local files (user-specific info) +*.lps + +# Lazarus backups and unit output folders. +# These can be changed by user in Lazarus/project options. +backup/ +*.bak +lib/ + +# Application bundle for Mac OS +*.app/ diff --git a/Global/Linux.gitignore b/Global/Linux.gitignore index 5932ea17971d04e6f54b1edbde796f1a9048a0e1..cc9586893b6ed581866f0ccbea4584b6abd59a7a 100644 --- a/Global/Linux.gitignore +++ b/Global/Linux.gitignore @@ -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 .directory diff --git a/Global/Mercurial.gitignore b/Global/Mercurial.gitignore index 3173e26f9be99b43974bcdac444061c2d1fa204a..e65d113798823a541056bda2495e83046b680cf3 100644 --- a/Global/Mercurial.gitignore +++ b/Global/Mercurial.gitignore @@ -1,3 +1,6 @@ -/.hg/* -*/.hg/* +.hg/ .hgignore +.hgsigs +.hgsub +.hgsubstate +.hgtags diff --git a/Global/MicrosoftOffice.gitignore b/Global/MicrosoftOffice.gitignore index 412297bb997424be11d3bd5323b856964521ea1d..4a2edc7e067e8d92dc920f83dcdf3730eac3fbd3 100644 --- a/Global/MicrosoftOffice.gitignore +++ b/Global/MicrosoftOffice.gitignore @@ -8,3 +8,6 @@ # Excel Backup File *.xlk + +# PowerPoint temporary +~$*.ppt* diff --git a/Global/NetBeans.gitignore b/Global/NetBeans.gitignore index debe0e48ef5c490d6b6627f8616c92ccc39b92d9..520d91ff584bda8a9385fb02acbbf03e0d35fed3 100644 --- a/Global/NetBeans.gitignore +++ b/Global/NetBeans.gitignore @@ -4,5 +4,4 @@ nbbuild/ dist/ nbdist/ nbactions.xml -nb-configuration.xml .nb-gradle/ diff --git a/Global/Otto.gitignore b/Global/Otto.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..5aa263f9db03327b7a58a134f3a0005c280644af --- /dev/null +++ b/Global/Otto.gitignore @@ -0,0 +1 @@ +.otto/ diff --git a/Global/SynopsysVCS.gitignore b/Global/SynopsysVCS.gitignore index 9731789665b37a25ed907b7faa32179fa18a53ec..eed2432fb787a27d0b58416a1357b9fca6e39c75 100644 --- a/Global/SynopsysVCS.gitignore +++ b/Global/SynopsysVCS.gitignore @@ -1,23 +1,36 @@ -# Waveforms -*.vpd +# Waveform formats *.vcd +*.vpd *.evcd +*.fsdb -# Binary files +# Default name of the simulation executable. A different name can be +# specified with this switch (the associated daidir database name is +# also taken from here): -o / simv -# Directories used for compilation -csrc/ +# Generated for Verilog and VHDL top configs simv.daidir/ +simv.db.dir/ -# Log files -*.log +# Infrastructure necessary to co-simulate SystemC models with +# Verilog/VHDL models. An alternate directory may be specified with this +# switch: -Mdir= +csrc/ -# DVE, UCLI related files -DVEfiles/ -ucli* -*.key +# Log file - the following switch allows to specify the file that will be +# used to write all messages from simulation: -l +*.log -# Coverage related files +# Coverage results (generated with urg) and database location. The +# following switch can also be used: urg -dir .vdb simv.vdb/ urgReport/ + +# DVE and UCLI related files. +DVEfiles/ +ucli.key + +# When the design is elaborated for DirectC, the following file is created +# with declarations for C/C++ functions. +vc_hdrs.h diff --git a/Global/Tags.gitignore b/Global/Tags.gitignore index 45922ec1cb00ff6c96f20fa67ca5fa83a9da8359..c0318165a2790cedcc8a27765b3e8bc2f586006c 100644 --- a/Global/Tags.gitignore +++ b/Global/Tags.gitignore @@ -1,7 +1,9 @@ # Ignore tags created by etags, ctags, gtags (GNU global) and cscope TAGS +.TAGS !TAGS/ tags +.tags !tags/ gtags.files GTAGS diff --git a/Global/Vim.gitignore b/Global/Vim.gitignore index 6c5ee8df160a5bd391610c1dcafaca7f083e6ab5..325bd5767970aad3634da05253be2dcb52bc5fd0 100644 --- a/Global/Vim.gitignore +++ b/Global/Vim.gitignore @@ -1,6 +1,10 @@ +# swap [._]*.s[a-w][a-z] [._]s[a-w][a-z] +# persistent undo *.un~ +# session Session.vim +# temporary .netrwhist *~ diff --git a/Global/VirtualEnv.gitignore b/Global/VirtualEnv.gitignore index e2c082c8d5bb2e9f5bbcf4f9f17d958814b524da..b2c22f2af7f40864033841b32c572de4c60eff1d 100644 --- a/Global/VirtualEnv.gitignore +++ b/Global/VirtualEnv.gitignore @@ -4,6 +4,9 @@ [Bb]in [Ii]nclude [Ll]ib +[Ll]ib64 +[Ll]ocal [Ss]cripts pyvenv.cfg +.venv pip-selfcheck.json diff --git a/Global/VisualStudioCode.gitignore b/Global/VisualStudioCode.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..faa18382a3c9eeeea55949156e562c33220f7148 --- /dev/null +++ b/Global/VisualStudioCode.gitignore @@ -0,0 +1,2 @@ +.vscode + diff --git a/Global/Xcode.gitignore b/Global/Xcode.gitignore index 1b81d249584e3d550eef0d90db0350711bd8f939..37de8bb4793f174d4cb4dab98b2ead9020b86d21 100644 --- a/Global/Xcode.gitignore +++ b/Global/Xcode.gitignore @@ -1,4 +1,12 @@ +# Xcode +# +# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore + +## Build generated build/ +DerivedData/ + +## Various settings *.pbxuser !default.pbxuser *.mode1v3 @@ -7,8 +15,9 @@ build/ !default.mode2v3 *.perspectivev3 !default.perspectivev3 -xcuserdata -*.xccheckout +xcuserdata/ + +## Other *.moved-aside -DerivedData -*.xcuserstate +*.xccheckout +*.xcscmblueprint diff --git a/Global/XilinxISE.gitignore b/Global/XilinxISE.gitignore index e041f51b2d979ac28787887a3a26a5b9bee3f43b..4475f843da99d685d87c68a7c4ea5d4e00fa6563 100644 --- a/Global/XilinxISE.gitignore +++ b/Global/XilinxISE.gitignore @@ -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 diff --git a/Gradle.gitignore b/Gradle.gitignore index 302a5f2ff1d5649768f2802f9a78eea8eaa85680..2200361b728af06025cdba9d797d4688380a4e2f 100644 --- a/Gradle.gitignore +++ b/Gradle.gitignore @@ -6,3 +6,6 @@ gradle-app.setting # Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored) !gradle-wrapper.jar + +# Cache of project +.gradletasknamecache diff --git a/Haskell.gitignore b/Haskell.gitignore index 3f4aa15b21177e98d5ca74d4040526b3ff9e18a4..cdc3c4dce76c1940dec8f943f4f1f89f83a7844b 100644 --- a/Haskell.gitignore +++ b/Haskell.gitignore @@ -6,7 +6,6 @@ cabal-dev *.chs.h *.dyn_o *.dyn_hi -.virtualenv .hpc .hsenv .cabal-sandbox/ @@ -14,3 +13,4 @@ cabal.sandbox.config *.prof *.aux *.hp +.stack-work/ diff --git a/Joomla.gitignore b/Joomla.gitignore index cf36d8cf523ca7fe67b94fc291333f28ed080b84..0d7a0de298faec7abe9c2592558364fbdda7bde7 100644 --- a/Joomla.gitignore +++ b/Joomla.gitignore @@ -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 diff --git a/Jython.gitignore b/Jython.gitignore deleted file mode 100644 index e7de4f1a6913bce229f062f63826ee8f6a15a464..0000000000000000000000000000000000000000 --- a/Jython.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -*.pyc -*.class diff --git a/KiCAD.gitignore b/KiCAD.gitignore index 3dd696ea0aa5767df3d3da54f98cc0ffe34f93ff..a9e50ba43c5a9579a7254cdf9d7badc4309560cd 100644 --- a/KiCAD.gitignore +++ b/KiCAD.gitignore @@ -3,6 +3,8 @@ # Temporary files *.000 *.bak +*.bck +*.kicad_pcb-bak # Netlist files (exported from Eeschema) *.net diff --git a/LICENSE b/LICENSE index ac31f1a8b071934986050cdb35293fa4f9e3e0e9..b8a103ac9b138a427f4318dd762256bd511cd9ab 100644 --- a/LICENSE +++ b/LICENSE @@ -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 copy of this software and associated documentation files (the "Software"), diff --git a/Laravel.gitignore b/Laravel.gitignore index 36d7adeb76ecb7c714bd1d11d82dd92a8ca3be0c..b4b05113a7ead5d530bcd301439a0bbf464d0f4b 100644 --- a/Laravel.gitignore +++ b/Laravel.gitignore @@ -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 +.env.example \ No newline at end of file diff --git a/Meteor.gitignore b/Meteor.gitignore deleted file mode 100644 index 0167b87cc3e36081f694cbf03fce7d28f68f0c9e..0000000000000000000000000000000000000000 --- a/Meteor.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -.meteor/local -.meteor/meteorite diff --git a/Node.gitignore b/Node.gitignore index 123ae94d052f3fa853fdc228dcabf0c7fb65ce38..e920c16718d133a2ef272e4b57b512739ecb002f 100644 --- a/Node.gitignore +++ b/Node.gitignore @@ -1,6 +1,7 @@ # Logs logs *.log +npm-debug.log* # Runtime data pids @@ -23,5 +24,10 @@ coverage build/Release # Dependency directory -# https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git node_modules + +# Optional npm cache directory +.npm + +# Optional REPL history +.node_repl_history diff --git a/Objective-C.gitignore b/Objective-C.gitignore index c964cd8846dd4b77b89ab22222c80e826ae0147c..08b55ac62f67337eb930d44bf0cfb469b7860359 100644 --- a/Objective-C.gitignore +++ b/Objective-C.gitignore @@ -1,6 +1,12 @@ # Xcode # +# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore + +## Build generated build/ +DerivedData/ + +## Various settings *.pbxuser !default.pbxuser *.mode1v3 @@ -9,18 +15,38 @@ build/ !default.mode2v3 *.perspectivev3 !default.perspectivev3 -xcuserdata -*.xccheckout +xcuserdata/ + +## Other *.moved-aside -DerivedData +*.xccheckout +*.xcscmblueprint + +## Obj-C/Swift specific *.hmap *.ipa -*.xcuserstate # 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 +# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control # -#Pods/ +# Pods/ + +# Carthage +# +# Add this line if you want to avoid checking in source code from Carthage dependencies. +# Carthage/Checkouts + +Carthage/Build + +# fastlane +# +# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the +# screenshots whenever they are needed. +# For more information about the recommended setup visit: +# https://github.com/fastlane/fastlane/blob/master/docs/Gitignore.md + +fastlane/report.xml +fastlane/screenshots diff --git a/OpenCart.gitignore b/OpenCart.gitignore index cc937674b8c068f45446f11ec7cac17143ca47dd..28e45aa6aac4a1f9fffe82ad52e4169bbd1a25f0 100644 --- a/OpenCart.gitignore +++ b/OpenCart.gitignore @@ -9,3 +9,5 @@ image/data/ image/cache/ system/cache/ system/logs/ + +system/storage/ diff --git a/PlayFramework.gitignore b/PlayFramework.gitignore index 4735f055fc88c2df054392ae5789d9ae1e14ca31..6d67f1191751bc6de7f13d7c7c10399c31c7b38b 100644 --- a/PlayFramework.gitignore +++ b/PlayFramework.gitignore @@ -5,13 +5,11 @@ bin/ /lib/ /logs/ /modules -/project/project /project/target /target tmp/ test-result server.pid -*.iml *.eml /dist/ .cache diff --git a/Prestashop.gitignore b/Prestashop.gitignore index 890c4e60273bfa632aba6494002f41b12c0c6492..1e7a58d3c3dc6861b888c22ca87e9056ee4b3279 100644 --- a/Prestashop.gitignore +++ b/Prestashop.gitignore @@ -1,29 +1,25 @@ -# Directories content -cache/class_index.php -cache/smarty/cache/* -!cache/smarty/cache/index.php -cache/smarty/compile/* -!cache/smarty/compile/index.php -cache/tcpdf/* -!cache/tcpdf/index.php +# Private files +# The following files contain your database credentials and other personal data. -config/xml/*.xml -config/settings.inc.php - -log/*.log +config/settings.*.php -img/* -!img/index.php -!img/*/index.php +# Cache, temp and generated files +# The following files are generated by PrestaShop. -tools/smarty*/cache/*.php -!tools/smarty*/cache/index.php -tools/smarty*/compile/*.php -!tools/smarty*/compile/index.php +admin-dev/autoupgrade/ +/cache/* +config/xml/*.xml +/log/* +*sitemap.xml +themes/*/cache/ +modules/*/config*.xml -themes/default/cache/*.js -themes/default/cache/*.css +# Site content +# The following folders contain product images, virtual products, CSV's, etc. -# Ignore files on root directory -robots.txt -sitemap.xml +admin-dev/backups/ +admin-dev/export/ +admin-dev/import/ +download/ +/img/* +upload/ diff --git a/Python.gitignore b/Python.gitignore index ba74660506d90c514ee1d32bf4eb5ecb0af14075..b3e96b51457812943e1e8849019e1fbf9b0af856 100644 --- a/Python.gitignore +++ b/Python.gitignore @@ -1,6 +1,7 @@ # Byte-compiled / optimized / DLL files __pycache__/ *.py[cod] +*$py.class # C extensions *.so @@ -42,6 +43,7 @@ htmlcov/ nosetests.xml coverage.xml *,cover +.hypothesis/ # Translations *.mo @@ -49,9 +51,13 @@ coverage.xml # Django stuff: *.log +local_settings.py # Sphinx documentation docs/_build/ # PyBuilder target/ + +#Ipython Notebook +.ipynb_checkpoints diff --git a/Qt.gitignore b/Qt.gitignore index 85a6baace8d6202d433a15ed39b48730fba34fd4..4a524e3ac284b039a6a238e9b820ce143df85556 100644 --- a/Qt.gitignore +++ b/Qt.gitignore @@ -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 + diff --git a/R.gitignore b/R.gitignore index b9003860e1f747f2be9cba38e57caf4a06e9c9b6..8eff68f7058287845d34b59ee7473d3b14e37db2 100644 --- a/R.gitignore +++ b/R.gitignore @@ -2,6 +2,9 @@ .Rhistory .Rapp.history +# Session Data files +.RData + # Example code in package build process *-Ex.R @@ -11,3 +14,6 @@ # produced vignettes vignettes/*.html vignettes/*.pdf + +# OAuth2 token, see https://github.com/hadley/httr/releases/tag/v0.3 +.httr-oauth diff --git a/README.md b/README.md index 14042e94fa1b41fb3f480001c2dbeb6412c356b8..5c4d20dffd4074fe8b43b013974cd3573bffe309 100644 --- a/README.md +++ b/README.md @@ -31,17 +31,17 @@ high quality, we request that contributions adhere to the following guidelines. - **Provide a link to the application or project’s homepage**. Unless it’s extremely popular, there’s a chance the maintainers don’t know about or use the language, framework, editor, app, or project your change applies to. - + - **Provide links to documentation** supporting the change you’re making. Current, canonical documentation mentioning the files being ignored is best. If documentation isn’t available to support your change, do the best you can to explain what the files being ignored are for. - + - **Explain why you’re making a change**. Even if it seems self-evident, please take a sentence or two to tell us why your change or addition should happen. It’s especially helpful to articulate why this change applies to *everyone* who works with the applicable technology, rather than just you or your team. - + - **Please consider the scope of your change**. If your change specific to a certain language or framework, then make sure the change is made to the template for that language or framework, rather than to the template for an @@ -70,9 +70,9 @@ Here’s how we suggest you go about proposing a change to this project: Using the web-based interface to make changes is fine too, and will help you by automatically forking the project and prompting to send a pull request too. -[fork]: http://help.github.com/forking/ +[fork]: https://help.github.com/articles/fork-a-repo/ [branch]: https://help.github.com/articles/creating-and-deleting-branches-within-your-repository -[pr]: http://help.github.com/pull-requests/ +[pr]: https://help.github.com/articles/using-pull-requests/ ## License diff --git a/Rails.gitignore b/Rails.gitignore index f786a90af379b9218473138919f0b5f6f58cf5a4..2121e0a8038ff598480289af8d9bedd0a8b290fb 100644 --- a/Rails.gitignore +++ b/Rails.gitignore @@ -16,11 +16,11 @@ pickle-email-*.html config/initializers/secret_token.rb config/secrets.yml -## Environment normalisation: +## Environment normalization: /.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 # 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 diff --git a/Ruby.gitignore b/Ruby.gitignore index 28f48498329892b0ac241207d264f908a23e8cfd..a8b1cda23f83c5db4f6ba8d899f430db63fc5cf0 100644 --- a/Ruby.gitignore +++ b/Ruby.gitignore @@ -5,6 +5,7 @@ /InstalledFiles /pkg/ /spec/reports/ +/spec/examples.txt /test/tmp/ /test/version_tmp/ /tmp/ @@ -20,7 +21,7 @@ build/ /doc/ /rdoc/ -## Environment normalisation: +## Environment normalization: /.bundle/ /vendor/bundle /lib/bundler/man/ diff --git a/Rust.gitignore b/Rust.gitignore index 37727f91cbeed77698ea9cd0bcd5f074caf34739..a29d685699ee0221081ea8654522daecba589e1e 100644 --- a/Rust.gitignore +++ b/Rust.gitignore @@ -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 diff --git a/Sass.gitignore b/Sass.gitignore index 0f1905d3e09900bfbbeac66dd48fc781ea52795d..486b32ce90c34784ec42e113266dd0770b881011 100644 --- a/Sass.gitignore +++ b/Sass.gitignore @@ -1,2 +1,2 @@ -.sass-cache +.sass-cache/ *.css.map diff --git a/Swift.gitignore b/Swift.gitignore index 8615121b24a361eb4d1a5f1d06ca38d91202f7ec..9724b3c6690592a09bb2a2f1a08bc87d041dc14e 100644 --- a/Swift.gitignore +++ b/Swift.gitignore @@ -1,6 +1,12 @@ # Xcode # +# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore + +## Build generated build/ +DerivedData/ + +## Various settings *.pbxuser !default.pbxuser *.mode1v3 @@ -9,19 +15,32 @@ build/ !default.mode2v3 *.perspectivev3 !default.perspectivev3 -xcuserdata -*.xccheckout +xcuserdata/ + +## Other *.moved-aside -DerivedData +*.xccheckout +*.xcscmblueprint + +## Obj-C/Swift specific *.hmap *.ipa -*.xcuserstate + +## 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 +# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control # # Pods/ @@ -31,3 +50,13 @@ DerivedData # 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 diff --git a/Symfony.gitignore b/Symfony.gitignore index c68377d1acb41c095ca7ed039a93937d4290313d..6fac1be44f521fbc89bf40f7ba7b6cb7ea711448 100644 --- a/Symfony.gitignore +++ b/Symfony.gitignore @@ -26,6 +26,9 @@ /web/bundles/ /web/uploads/ +# Assets managed by Bower +/web/assets/vendor/ + # PHPUnit /app/phpunit.xml /phpunit.xml diff --git a/TeX.gitignore b/TeX.gitignore index ad74c6540d918db6f7510917d1c4af273ea84432..7bd0aa00c3a31480d92b3b96a4383bafd2fd8bde 100644 --- a/TeX.gitignore +++ b/TeX.gitignore @@ -6,6 +6,7 @@ *.fls *.out *.toc +*.fmt ## Intermediate documents: *.dvi @@ -32,7 +33,6 @@ *.pdfsync ## Auxiliary and intermediate files from other packages: - # algorithms *.alg *.loa @@ -48,6 +48,9 @@ acs-*.bib *.snm *.vrb +# cprotect +*.cpt + #(e)ledmac/(e)ledpar *.end *.[1-9] @@ -92,8 +95,11 @@ acs-*.bib # minitoc *.maf +*.mlf +*.mlt *.mtc -*.mtc0 +*.mtc[0-9] +*.mtc[1-9][0-9] # minted _minted* @@ -102,6 +108,9 @@ _minted* # morewrites *.mw +# mylatexformat +*.fmt + # nomencl *.nlo @@ -115,12 +124,38 @@ _minted* *.sympy sympy-plots-for-*.tex/ +# pdfcomment +*.upa +*.upb + +#pythontex +*.pytxcode +pythontex-files-*/ + +# Texpad +.texpadtmp + +# TikZ & PGF +*.dpth +*.md5 +*.auxlock + # todonotes *.tdo # xindy *.xdy +# xypic precompiled matrices +*.xyc + # WinEdt *.bak *.sav + +# endfloat +*.ttt +*.fff + +# Latexian +TSWLatexianTemp* diff --git a/Typo3.gitignore b/Typo3.gitignore index d1593b16554050b084caf738e5ca04d5d8386e49..cb024fefe996b8894fb94b53f9d9657a64aa72a6 100644 --- a/Typo3.gitignore +++ b/Typo3.gitignore @@ -1,18 +1,20 @@ -## TYPO3 v4 -# Ignore serveral upload and file directories. +## TYPO3 v6.2 +# Ignore several upload and file directories. /fileadmin/user_upload/ /fileadmin/_temp_/ +/fileadmin/_processed_/ /uploads/ # Ignore cache /typo3conf/temp_CACHED* /typo3conf/temp_fieldInfo.php -# Ignore local config which overrides typo3 config. -# You should include your local stuff with `@include('localconf_local.php');` at the end of localconf.php. -# See http://stackoverflow.com/questions/11905360/how-best-to-manage-typo3-installations-using-git for details. -/typo3conf/localconf_local.php +/typo3conf/deprecation_*.log +/typo3conf/AdditionalConfiguration.php # Ignore system folders, you should have them symlinked. -# If not comment out the following two entries. +# If not comment out the following entries. /typo3 -/t3lib +/typo3_src +/typo3_src-* +/.htaccess +/index.php # Ignore temp directory. /typo3temp/ diff --git a/Umbraco.gitignore b/Umbraco.gitignore index 21af92de7a83ad4c1dc2cc2967a3101477138f04..ea05e1fb2a9e95c25d6e8ee4f62c61e5d7619e04 100644 --- a/Umbraco.gitignore +++ b/Umbraco.gitignore @@ -1,12 +1,11 @@ # 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/ diff --git a/Unity.gitignore b/Unity.gitignore index e31b6a519849a1cf6dcabd618977f3514cc7eb38..5aafcbb7f1d4b3f02e1c63c1ce1693aa2b5a9cc8 100644 --- a/Unity.gitignore +++ b/Unity.gitignore @@ -1,9 +1,12 @@ -[Ll]ibrary/ -[Tt]emp/ -[Oo]bj/ -[Bb]uild/ +/[Ll]ibrary/ +/[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 diff --git a/UnrealEngine.gitignore b/UnrealEngine.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..94e990aa0fc444923d978363b56dc3675697d580 --- /dev/null +++ b/UnrealEngine.gitignore @@ -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/* diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index 57a1574c4f5ccee529831e15bdf01c373ea5a845..354253ec27e856d14e9d5bed86a03a5eedb9b6da 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -17,13 +17,15 @@ [Rr]eleases/ x64/ x86/ -build/ bld/ [Bb]in/ [Oo]bj/ +[Ll]og/ -# Visual Studo 2015 cache/options directory +# Visual Studio 2015 cache/options directory .vs/ +# Uncomment if you have tasks that create the project's static files in wwwroot +#wwwroot/ # MSTest test Results [Tt]est[Rr]esult*/ @@ -38,6 +40,10 @@ TestResult.xml [Rr]eleasePS/ dlldata.c +# DNX +project.lock.json +artifacts/ + *_i.c *_p.c *_i.h @@ -70,6 +76,7 @@ _Chutzpah* ipch/ *.aps *.ncb +*.opendb *.opensdf *.sdf *.cachefile @@ -78,6 +85,7 @@ ipch/ *.psess *.vsp *.vspx +*.sap # TFS 2012 Local Workspace $tf/ @@ -90,7 +98,7 @@ _ReSharper*/ *.[Rr]e[Ss]harper *.DotSettings.user -# JustCode is a .NET coding addin-in +# JustCode is a .NET coding add-in .JustCode # TeamCity is a build add-in @@ -102,6 +110,7 @@ _TeamCity* # NCrunch _NCrunch_* .*crunch*.local.xml +nCrunchTemp_* # MightyMoose *.mm.* @@ -142,18 +151,33 @@ 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/ -# Others +# Visual Studio cache files +# files ending in .cache can be ignored *.[Cc]ache +# but keep track of directories ending in .cache +!*.[Cc]ache/ + +# Others ClientBin/ -[Ss]tyle[Cc]op.* ~$* *~ *.dbmdl @@ -161,7 +185,7 @@ ClientBin/ *.pfx *.publishsettings node_modules/ -bower_components/ +orleans.codegen.cs # RIA/Silverlight projects Generated_Code/ @@ -186,6 +210,9 @@ UpgradeLog*.htm # Microsoft Fakes FakesAssemblies/ +# GhostDoc plugin setting file +*.GhostDoc.xml + # Node.js Tools for Visual Studio .ntvs_analysis.dat @@ -194,3 +221,17 @@ FakesAssemblies/ # Visual Studio 6 workspace options file *.opt + +# Visual Studio LightSwitch build output +**/*.HTMLClient/GeneratedArtifacts +**/*.DesktopClient/GeneratedArtifacts +**/*.DesktopClient/ModelManifest.xml +**/*.Server/GeneratedArtifacts +**/*.Server/ModelManifest.xml +_Pvt_Extensions + +# Paket dependency manager +.paket/paket.exe + +# FAKE - F# Make +.fake/ diff --git a/Waf.gitignore b/Waf.gitignore index 68cacdb9731163a03c1ba5a61dd8f231d9e2874d..48e8d8f7be4d6a0274474e36010e54eccacd5b40 100644 --- a/Waf.gitignore +++ b/Waf.gitignore @@ -1,3 +1,4 @@ # for projects that use Waf for building: http://code.google.com/p/waf/ .waf-* +.waf3-* .lock-* diff --git a/WordPress.gitignore b/WordPress.gitignore index 052e56ab16214e921dd6e4802212be73cf006fbb..5603287880104d0fdfb74f453a24d1758873cd74 100644 --- a/WordPress.gitignore +++ b/WordPress.gitignore @@ -11,3 +11,8 @@ wp-content/cache/ wp-content/upgrade/ wp-content/uploads/ wp-content/wp-cache-config.php +wp-content/plugins/hello.php + +/readme.html +/license.txt +