diff options
33 files changed, 426 insertions, 151 deletions
diff --git a/Android.gitignore b/Android.gitignore index ccf2efe0..9068cd01 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 diff --git a/ArchLinuxPackages.gitignore b/ArchLinuxPackages.gitignore index dcf73900..b7390552 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/C.gitignore b/C.gitignore index edf6645d..bbf313b2 100644 --- a/C.gitignore +++ b/C.gitignore @@ -27,3 +27,6 @@ *.i*86 *.x86_64 *.hex + +# Debug files +*.dSYM/ diff --git a/CUDA.gitignore b/CUDA.gitignore new file mode 100644 index 00000000..cb385db8 --- /dev/null +++ b/CUDA.gitignore @@ -0,0 +1,6 @@ +*.i +*.ii +*.gpu +*.ptx +*.cubin +*.fatbin diff --git a/CakePHP.gitignore b/CakePHP.gitignore index 6f5ae46c..55a665e4 100644 --- a/CakePHP.gitignore +++ b/CakePHP.gitignore @@ -1,11 +1,11 @@ -CakePHP 3 +# CakePHP 3 /vendor/* /config/app.php /tmp/* /logs/* -CakePHP 2 +# CakePHP 2 /app/tmp/* /app/Config/core.php diff --git a/CodeIgniter.gitignore b/CodeIgniter.gitignore index 846b8c54..0f77d9e1 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/Global/Eclipse.gitignore b/Global/Eclipse.gitignore index 81e44304..0e22e957 100644 --- a/Global/Eclipse.gitignore +++ b/Global/Eclipse.gitignore @@ -26,6 +26,9 @@ local.properties # JDT-specific (Eclipse Java Development Tools) .classpath +# Java annotation processor (APT) +.factorypath + # PDT-specific .buildpath diff --git a/Global/Ensime.gitignore b/Global/Ensime.gitignore index 3772bdfe..f2daebb9 100644 --- a/Global/Ensime.gitignore +++ b/Global/Ensime.gitignore @@ -1,3 +1,4 @@ # Ensime specific .ensime +.ensime_cache/ .ensime_lucene/ diff --git a/Global/JetBrains.gitignore b/Global/JetBrains.gitignore index 0481a342..573bcf45 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 *.iml @@ -32,7 +32,7 @@ ## Plugin-specific files: # IntelliJ -out/ +/out/ # mpeltonen/sbt-idea plugin .idea_modules/ diff --git a/Global/Lazarus.gitignore b/Global/Lazarus.gitignore index 3ef747d7..b32943f1 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/README.md b/Global/README.md index adc1099c..06b6649b 100644 --- a/Global/README.md +++ b/Global/README.md @@ -4,7 +4,7 @@ This directory contains globally useful gitignores, e.g. OS-specific and editor specific. For more on global gitignores: -<http://help.github.com/git-ignore/> +<https://help.github.com/articles/ignoring-files/#create-a-global-gitignore> And a good blog post about 'em: <http://augustl.com/blog/2009/global_gitignores> diff --git a/Global/SynopsysVCS.gitignore b/Global/SynopsysVCS.gitignore index 97317896..eed2432f 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 <path>/<filename> 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=<directory_path> +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 <filename> +*.log -# Coverage related files +# Coverage results (generated with urg) and database location. The +# following switch can also be used: urg -dir <coverage_directory>.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/VisualStudioCode.gitignore b/Global/VisualStudioCode.gitignore new file mode 100644 index 00000000..0865bb7d --- /dev/null +++ b/Global/VisualStudioCode.gitignore @@ -0,0 +1,2 @@ +.settings + diff --git a/Global/Xcode.gitignore b/Global/Xcode.gitignore index 1b81d249..d07b7894 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 @@ -8,7 +16,8 @@ build/ *.perspectivev3 !default.perspectivev3 xcuserdata + +## Other *.xccheckout *.moved-aside -DerivedData *.xcuserstate diff --git a/Haskell.gitignore b/Haskell.gitignore index 3f4aa15b..cdc3c4dc 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/Jekyll.gitignore b/Jekyll.gitignore index 0c3e5abb..5c91b60c 100644 --- a/Jekyll.gitignore +++ b/Jekyll.gitignore @@ -1,2 +1,3 @@ _site/ .sass-cache/ +.jekyll-metadata diff --git a/Joomla.gitignore b/Joomla.gitignore index 9c26553d..cf36d8cf 100644 --- a/Joomla.gitignore +++ b/Joomla.gitignore @@ -1,13 +1,14 @@ /.gitignore /.htaccess /administrator/cache/* -/administrator/components/com_contenthistory/* -/administrator/components/com_postinstall/* -/administrator/components/com_joomlaupdate/* -/administrator/components/com_tags/* /administrator/components/com_admin/* +/administrator/components/com_ajax/* +/administrator/components/com_tags/* /administrator/components/com_banners/* /administrator/components/com_cache/* +/administrator/components/com_postinstall/* +/administrator/components/com_joomlaupdate/* +/administrator/components/com_contenthistory/* /administrator/components/com_categories/* /administrator/components/com_checkin/* /administrator/components/com_config/* @@ -32,7 +33,52 @@ /administrator/components/index.html /administrator/help/* /administrator/includes/* -/administrator/language/en-GB/ +/administrator/language/en-GB/en-GB.com_ajax.ini +/administrator/language/en-GB/en-GB.com_ajax.sys.ini +/administrator/language/en-GB/en-GB.com_contenthistory.ini +/administrator/language/en-GB/en-GB.com_contenthistory.sys.ini +/administrator/language/en-GB/en-GB.com_joomlaupdate.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.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.sys.ini +/administrator/language/en-GB/en-GB.mod_stats_admin.ini +/administrator/language/en-GB/en-GB.mod_stats_admin.sys.ini +/administrator/language/en-GB/en-GB.plg_authentication_cookie.ini +/administrator/language/en-GB/en-GB.plg_authentication_cookie.sys.ini +/administrator/language/en-GB/en-GB.plg_content_contact.ini +/administrator/language/en-GB/en-GB.plg_content_contact.sys.ini +/administrator/language/en-GB/en-GB.plg_content_finder.ini +/administrator/language/en-GB/en-GB.plg_content_finder.sys.ini +/administrator/language/en-GB/en-GB.plg_finder_categories.ini +/administrator/language/en-GB/en-GB.plg_finder_categories.sys.ini +/administrator/language/en-GB/en-GB.plg_finder_contacts.ini +/administrator/language/en-GB/en-GB.plg_finder_contacts.sys.ini +/administrator/language/en-GB/en-GB.plg_finder_content.ini +/administrator/language/en-GB/en-GB.plg_finder_content.sys.ini +/administrator/language/en-GB/en-GB.plg_finder_newsfeeds.sys.ini +/administrator/language/en-GB/en-GB.plg_finder_newsfeeds.ini +/administrator/language/en-GB/en-GB.plg_finder_tags.ini +/administrator/language/en-GB/en-GB.plg_finder_tags.sys.ini +/administrator/language/en-GB/en-GB.plg_finder_weblinks.ini +/administrator/language/en-GB/en-GB.plg_finder_weblinks.sys.ini +/administrator/language/en-GB/en-GB.plg_installer_webinstaller.ini +/administrator/language/en-GB/en-GB.plg_installer_webinstaller.sys.ini +/administrator/language/en-GB/en-GB.plg_quickicon_joomlaupdate.ini +/administrator/language/en-GB/en-GB.plg_quickicon_joomlaupdate.sys.ini +/administrator/language/en-GB/en-GB.plg_search_tags.ini +/administrator/language/en-GB/en-GB.plg_search_tags.sys.ini +/administrator/language/en-GB/en-GB.plg_system_languagecode.ini +/administrator/language/en-GB/en-GB.plg_system_languagecode.sys.ini +/administrator/language/en-GB/en-GB.plg_twofactorauth_totp.ini +/administrator/language/en-GB/en-GB.plg_twofactorauth_totp.sys.ini +/administrator/language/en-GB/en-GB.plg_twofactorauth_yubikey.ini +/administrator/language/en-GB/en-GB.plg_twofactorauth_yubikey.sys.ini +/administrator/language/en-GB/en-GB.tpl_isis.ini +/administrator/language/en-GB/en-GB.tpl_isis.sys.ini +/administrator/language/en-GB/install.xml /administrator/language/en-GB/en-GB.com_admin.ini /administrator/language/en-GB/en-GB.com_admin.sys.ini /administrator/language/en-GB/en-GB.com_banners.ini @@ -225,18 +271,21 @@ /administrator/modules/mod_stats_admin/* /administrator/modules/index.html /administrator/templates/bluestork/* +/administrator/templates/isis/* /administrator/templates/hathor/* /administrator/templates/system/* -/administrator/templates/isis/* /administrator/templates/index.html /administrator/index.php -/bin/* /cache/* +/bin/* /cli/* /components/com_banners/* +/components/com_ajax/* +/components/com_config/* +/components/com_contenthistory/* +/components/com_tags/* /components/com_contact/* /components/com_content/* -/components/com_contenthistory/* /components/com_finder/* /components/com_mailto/* /components/com_media/* @@ -245,24 +294,42 @@ /components/com_users/* /components/com_weblinks/* /components/com_wrapper/* -/components/com_ajax/* -/components/com_tags/* -/components/com_config/* /components/index.html /images/banners/* -/images/headers/* /images/sampledata/* /images/joomla* /images/index.html /images/powered_by.png /includes/* /installation/* +/language/en-GB/en-GB.com_ajax.ini +/language/en-GB/en-GB.com_config.ini /language/en-GB/en-GB.com_contact.ini +/language/en-GB/en-GB.com_finder.ini +/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.com_content.ini +/language/en-GB/en-GB.lib_idna_convert.sys.ini /language/en-GB/en-GB.com_mailto.ini +/language/en-GB/en-GB.lib_joomla.sys.ini +/language/en-GB/en-GB.lib_phpass.sys.ini +/language/en-GB/en-GB.lib_phpmailer.sys.ini +/language/en-GB/en-GB.lib_phputf8.sys.ini +/language/en-GB/en-GB.lib_simplepie.sys.ini /language/en-GB/en-GB.com_media.ini +/language/en-GB/en-GB.mod_finder.ini /language/en-GB/en-GB.com_messages.ini +/language/en-GB/en-GB.mod_tags_popular.ini +/language/en-GB/en-GB.mod_tags_popular.sys.ini +/language/en-GB/en-GB.mod_tags_similar.ini +/language/en-GB/en-GB.mod_tags_similar.sys.ini +/language/en-GB/en-GB.mod_finder.sys.ini +/language/en-GB/en-GB.tpl_beez3.ini +/language/en-GB/en-GB.tpl_beez3.sys.ini /language/en-GB/en-GB.com_newsfeeds.ini +/language/en-GB/en-GB.tpl_protostar.ini +/language/en-GB/en-GB.tpl_protostar.sys.ini /language/en-GB/en-GB.com_search.ini /language/en-GB/en-GB.com_users.ini /language/en-GB/en-GB.com_weblinks.ini @@ -352,12 +419,6 @@ /media/plg_system_highlight/* /media/system/* /media/index.html -/media/com_banners/* -/media/com_contenthistory/* -/media/com_joomlaupdate/* -/media/jui/* -/modules/mod_tags_popular/* -/modules/mod_tags_similar/* /modules/mod_articles_archive/* /modules/mod_articles_categories/* /modules/mod_articles_category/* @@ -389,6 +450,7 @@ /plugins/authentication/ldap/* /plugins/authentication/index.html /plugins/captcha/recaptcha/* +/plugins/captcha/index.html /plugins/content/emailcloak/* /plugins/content/example/* /plugins/content/finder/* @@ -398,6 +460,7 @@ /plugins/content/pagebreak/* /plugins/content/pagenavigation/* /plugins/content/vote/* +/plugins/content/contact/* /plugins/content/index.html /plugins/editors/codemirror/* /plugins/editors/none/* @@ -416,14 +479,18 @@ /plugins/finder/contacts/* /plugins/finder/content/* /plugins/finder/newsfeeds/* +/plugins/finder/tags/* /plugins/finder/weblinks/* +/plugins/installer/* /plugins/quickicon/extensionupdate/* /plugins/quickicon/joomlaupdate/* +/plugins/quickicon/index.html /plugins/search/categories/* /plugins/search/contacts/* /plugins/search/content/* /plugins/search/newsfeeds/* /plugins/search/weblinks/* +/plugins/search/tags/* /plugins/search/index.html /plugins/system/cache/* /plugins/system/debug/* @@ -437,28 +504,20 @@ /plugins/system/remember/* /plugins/system/sef/* /plugins/system/index.html +/plugins/twofactorauth/* /plugins/user/contactcreator/* /plugins/user/example/* /plugins/user/joomla/* /plugins/user/profile/* /plugins/user/index.html /plugins/index.html -/plugins/twofactorauth/totp/* -/plugins/content/contact/* -/plugins/authentication/cookie/* -/plugins/twofactorauth/yubikey/* -/plugins/twofactorauth/index.html -/plugins/captcha/* -/plugins/quickicon/index.html -/plugins/finder/tags/* -/plugins/search/tags/* /templates/atomic/* +/templates/beez3/* /templates/beez_20/* /templates/beez5/* +/templates/protostar/* /templates/system/* /templates/index.html -/templates/beez3/* -/templates/protostar/* /tmp/* /configuration.php /index.php diff --git a/Jython.gitignore b/Jython.gitignore deleted file mode 100644 index e7de4f1a..00000000 --- a/Jython.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -*.pyc -*.class diff --git a/KiCAD.gitignore b/KiCAD.gitignore new file mode 100644 index 00000000..3dd696ea --- /dev/null +++ b/KiCAD.gitignore @@ -0,0 +1,11 @@ +# For PCBs designed using KiCAD: http://www.kicad-pcb.org/ + +# Temporary files +*.000 +*.bak + +# Netlist files (exported from Eeschema) +*.net + +# Autorouter files (exported from Pcbnew) +.dsn diff --git a/Laravel.gitignore b/Laravel.gitignore index ac3492e2..36d7adeb 100644 --- a/Laravel.gitignore +++ b/Laravel.gitignore @@ -1,3 +1,4 @@ /bootstrap/compiled.php .env.*.php .env.php +.env diff --git a/Magento.gitignore b/Magento.gitignore index 7231003a..e2ea0133 100644 --- a/Magento.gitignore +++ b/Magento.gitignore @@ -89,7 +89,7 @@ LICENSE_AFL.txt LICENSE.html LICENSE.txt LICENSE_EE* -mage +/mage media/customer/ media/dhl/ media/downloadable/ diff --git a/Maven.gitignore b/Maven.gitignore index d66c5655..44c0caae 100644 --- a/Maven.gitignore +++ b/Maven.gitignore @@ -1,7 +1,10 @@ target/ +**/target/ pom.xml.tag pom.xml.releaseBackup pom.xml.versionsBackup pom.xml.next release.properties dependency-reduced-pom.xml +buildNumber.properties +.mvn/timing.properties diff --git a/Mercury.gitignore b/Mercury.gitignore index d1f9192f..70ec8693 100644 --- a/Mercury.gitignore +++ b/Mercury.gitignore @@ -1,4 +1,5 @@ Mercury/ +Mercury.modules *.mh *.err *.init diff --git a/Meteor.gitignore b/Meteor.gitignore deleted file mode 100644 index 0167b87c..00000000 --- a/Meteor.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -.meteor/local -.meteor/meteorite diff --git a/Node.gitignore b/Node.gitignore index 123ae94d..f7f6a08c 100644 --- a/Node.gitignore +++ b/Node.gitignore @@ -23,5 +23,5 @@ coverage build/Release # Dependency directory -# https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git +# https://docs.npmjs.com/misc/faq#should-i-check-my-node-modules-folder-into-git node_modules diff --git a/Objective-C.gitignore b/Objective-C.gitignore index a3cd143a..05096f66 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 @@ -10,17 +16,28 @@ build/ *.perspectivev3 !default.perspectivev3 xcuserdata + +## Other *.xccheckout *.moved-aside -DerivedData +*.xcuserstate +*.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 +# http://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 diff --git a/Prestashop.gitignore b/Prestashop.gitignore index 890c4e60..1c8462b0 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 10d47bd3..a65d0466 100644 --- a/Python.gitignore +++ b/Python.gitignore @@ -1,6 +1,7 @@ # Byte-compiled / optimized / DLL files __pycache__/ *.py[cod] +*$py.class # C extensions *.so @@ -41,6 +42,7 @@ htmlcov/ .cache nosetests.xml coverage.xml +*,cover # Translations *.mo diff --git a/Swift.gitignore b/Swift.gitignore index 8615121b..d571cb2c 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 @@ -10,12 +16,16 @@ build/ *.perspectivev3 !default.perspectivev3 xcuserdata + +## Other *.xccheckout *.moved-aside -DerivedData +*.xcuserstate +*.xcscmblueprint + +## Obj-C/Swift specific *.hmap *.ipa -*.xcuserstate # CocoaPods # diff --git a/TeX.gitignore b/TeX.gitignore index 8f7b5135..a7a84bc9 100644 --- a/TeX.gitignore +++ b/TeX.gitignore @@ -33,6 +33,7 @@ ## Auxiliary and intermediate files from other packages: + # algorithms *.alg *.loa @@ -70,6 +71,9 @@ acs-*.bib *.glo *.gls +# gnuplottex +*-gnuplottex-* + # hyperref *.brf @@ -90,7 +94,8 @@ acs-*.bib # minitoc *.maf *.mtc -*.mtc0 +*.mtc[0-9] +*.mtc[1-9][0-9] # minted _minted* @@ -99,6 +104,9 @@ _minted* # morewrites *.mw +# mylatexformat +*.fmt + # nomencl *.nlo @@ -112,6 +120,11 @@ _minted* *.sympy sympy-plots-for-*.tex/ +# TikZ & PGF +*.dpth +*.md5 +*.auxlock + # todonotes *.tdo diff --git a/Unity.gitignore b/Unity.gitignore index e31b6a51..9de94098 100644 --- a/Unity.gitignore +++ b/Unity.gitignore @@ -1,7 +1,7 @@ -[Ll]ibrary/ -[Tt]emp/ -[Oo]bj/ -[Bb]uild/ +/[Ll]ibrary/ +/[Tt]emp/ +/[Oo]bj/ +/[Bb]uild/ # Autogenerated VS/MD solution and project files *.csproj diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index 57a1574c..11c85194 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -1,16 +1,22 @@ -## Ignore Visual Studio temporary files, build results, and -## files generated by popular Visual Studio add-ons. - -# User-specific files +# temporary files generated by Visual Studio specific to the local user +# contains profile information and other metadata +# remove: if no longer targeting Visual Studio 2013 or earlier *.suo *.user *.userosscache *.sln.docstates - -# User-specific files (MonoDevelop/Xamarin Studio) +# +# new location for Visual Studio 2015 +.vs/ +# +# specific to MonoDevelop and Xamarin Studio *.userprefs +# +# workspace options file +# remove: if no longer targeting Visual Studio 6 +*.opt -# Build results +# build output folders generated by Visual Studio [Dd]ebug/ [Dd]ebugPublic/ [Rr]elease/ @@ -21,23 +27,57 @@ build/ bld/ [Bb]in/ [Oo]bj/ +# +# default build log file +# remove: if no longer targeting Visual Studio 6 +*.plg -# Visual Studo 2015 cache/options directory -.vs/ - -# MSTest test Results +# MSTest +# a test framework from Microsoft +# remove: if you are not using the MSTest runner to run your tests [Tt]est[Rr]esult*/ [Bb]uild[Ll]og.* -# NUNIT +# NUnit +# an open source test framework for .NET +# url: http://www.nunit.org/ +# remove: if you are not using the NUnit test runner to run your tests *.VisualState.xml TestResult.xml -# Build Results of an ATL Project +# ATL (Active Template Library) Project +# remove: if you do not have an ATL project in your solution [Dd]ebugPS/ [Rr]eleasePS/ dlldata.c +# DNX +# summary: the environment for cross-platform .NET development +# url: https://github.com/aspnet/dnx +# +# locks the package references for a project to specific versions +# url: https://github.com/aspnet/Home/wiki/Lock-file +# remove: if you would like to lock your dependencies to a specific version +# when committing and prevent package restore from selecting a +# more recent version +project.lock.json +# +# build output +artifacts/ + +# Program Database files created by various compilers +# used when debugging compiled code - the file essentially represents a lookup +# so that symbols can be resolved to the relevant source code +# url: https://en.wikipedia.org/wiki/Program_database +*.pdb + +# Visual SourceSafe hint files to keep the projects and solutions in sync +# with source control - these are no longer necessary once you've moved away +# from Visual SourceSafe +*.vspscc +*.vssscc + + *_i.c *_p.c *_i.h @@ -45,7 +85,6 @@ dlldata.c *.meta *.obj *.pch -*.pdb *.pgc *.pgd *.rsp @@ -56,14 +95,15 @@ dlldata.c *.tmp *.tmp_proj *.log -*.vspscc -*.vssscc .builds *.pidb *.svclog *.scc -# Chutzpah Test files +# Chutzpah +# a JS unit testing framework for commit +# url: https://github.com/mmanela/chutzpah +# remove: if you do not use the Chutzpah test runner in your project _Chutzpah* # Visual C++ cache files @@ -74,46 +114,70 @@ ipch/ *.sdf *.cachefile -# Visual Studio profiler +# temporary files generated by the Visual Studio profiling tools +# remove: if you are not using these features of Visual Studio *.psess *.vsp *.vspx # TFS 2012 Local Workspace +# remove: if you are not using TFVC in this repository $tf/ # Guidance Automation Toolkit *.gpState -# ReSharper is a .NET coding add-in +# ReSharper +# a Visual Studio extension which supports various project types +# url: https://www.jetbrains.com/resharper/ _ReSharper*/ *.[Rr]e[Ss]harper *.DotSettings.user -# JustCode is a .NET coding addin-in +# JustCode +# a Visual Studio extension for various project types +# url: https://www.jetbrains.com/resharper/ .JustCode -# TeamCity is a build add-in +# TeamCity +# a Visual Studio extension you can download from your TeamCity server +# url: https://confluence.jetbrains.com/display/TCD9/Visual+Studio+Addin _TeamCity* -# DotCover is a Code Coverage Tool +# DotCover +# a code coverage plugin for Visual Studio +# url: https://www.jetbrains.com/dotcover/ *.dotCover # NCrunch +# a continuous test runner for Visual Studio +# url: http://www.ncrunch.net _NCrunch_* .*crunch*.local.xml +nCrunchTemp_* # MightyMoose +# a continuous test runner for Visual Studio +# url: http://www.continuoustests.com/ *.mm.* AutoTest.Net/ -# Web workbench (sass) +# Web Workbench +# SASS, LESS and Coffeescript integration for Visual Studio +# url: http://www.mindscapehq.com/products/web-workbench .sass-cache/ -# Installshield output folder +# InstallShield +# installer framework for Windows machines +# url: http://www.flexerasoftware.com/producer/products/software-installation/installshield-software-installer/ +# +# output folder [Ee]xpress/ -# DocProject is a documentation generator add-in +# DocProject +# a document generation add-in for Visual Studio based on Sandcastle +# url: http://docproject.codeplex.com/ +# remove: if you are using Visual Studio 2010 or later (which are not supported) DocProject/buildhelp/ DocProject/Help/*.HxT DocProject/Help/*.HxC @@ -123,24 +187,42 @@ DocProject/Help/*.hhp DocProject/Help/Html2 DocProject/Help/html -# Click-Once directory +# ClickOnce installer and deployment +# url: https://msdn.microsoft.com/en-us/library/142dbbz4(v=vs.90).aspx +# remove: if you do not have ClickOnce publishing enabled for your projects publish/ # Publish Web Output *.[Pp]ublish.xml *.azurePubxml -# TODO: Comment the next line if you want to checkin your web deploy settings -# but database connection strings (with potential passwords) will be unencrypted +# +# remove: if you have sensitive details in your database connection strings + (such as passwords) committing this settings file will mean + that they are stored in an unencrypted state in your repository *.pubxml *.publishproj -# NuGet Packages +# NuGet +# summary: the package manager tool used in Visual Studio +# url: https://nuget.org +# +# output packages created by NuGet *.nupkg -# The packages folder can be ignored because of Package Restore +# +# Since NuGet 2.7, package restore is now a first class feature of Visual Studio +# so you do not need to check in your packages +# url: https://docs.nuget.org/consume/package-restore +# remove: if you do not wish to restore packages in this way, or have + package restore disabled **/packages/* -# except build/, which is used as an MSBuild target. +# +# some packages include MSBuild targets files, which are stored in this +# location and should be kept in version control !**/packages/build/ -# Uncomment if necessary however generally it will be regenerated when needed +# +# this file is a local listing of where to find your packages.config files, and +# is regenerated by Visual Studio during a build +# include: if you wish to version this file #!**/packages/repositories.config # Windows Azure Build Output @@ -150,25 +232,53 @@ csx/ # Windows Store app package directory AppPackages/ -# Others +# Visual Studio cache files +# files ending in .cache can be ignored *.[Cc]ache -ClientBin/ +# but keep track of directories ending in .cache +!*.[Cc]ache/ + +# StyleCop +# an extension for enforcing coding style in C# +# url: https://stylecop.codeplex.com/ +# +# temporary files created by the tool [Ss]tyle[Cc]op.* + +# Others ~$* *~ *.dbmdl *.dbproj.schemaview +# +# *.pfx *.publishsettings +# +# the local cache of node module installed by NPM +# remove: if you are not using nodejs in your solution + OR if you wish to keep this cache under version control node_modules/ -bower_components/ + +# Orleans +# a Distributed Actor Model framework for .NET +# url: https://github.com/dotnet/Orleans +# +# code generated as part of compilation +orleans.codegen.cs # RIA/Silverlight projects +# url: https://www.microsoft.com/silverlight/ +# output directory for *.xap artifacts +ClientBin/ +# temporary directory used by compiler Generated_Code/ -# Backup & report files from converting an old project file -# to a newer Visual Studio version. Backup files are not needed, -# because we have git ;-) +# Migrating Projects +# When upgrading a solution to a newer version of Visual Studio, there are a +# number of output files created so you can view the log, troubleshoot issues +# and potentially revert to a backup. These can be safely ignored, because +# you're already using version control. _UpgradeReport_Files/ Backup*/ UpgradeLog*.XML @@ -179,18 +289,18 @@ UpgradeLog*.htm *.ldf # Business Intelligence projects +# remove: if you do not have Business Intelligence projects in your solution *.rdl.data *.bim.layout *.bim_*.settings # Microsoft Fakes +# a local cache of assemblies +# url: https://msdn.microsoft.com/en-us/library/hh549175.aspx +# remove: if you are not using Microsoft Fakes in your projects FakesAssemblies/ # Node.js Tools for Visual Studio +# url: https://github.com/Microsoft/nodejstools +# remove: if you do not have this extension installed .ntvs_analysis.dat - -# Visual Studio 6 build log -*.plg - -# Visual Studio 6 workspace options file -*.opt diff --git a/WordPress.gitignore b/WordPress.gitignore index 052e56ab..56032878 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 + |