From c9200696fb2325d82c7816cc5b6d1e77a90036b0 Mon Sep 17 00:00:00 2001 From: Michiel Sikma Date: Mon, 29 Dec 2014 15:16:25 +0100 Subject: [PATCH 001/117] Update VirtualEnv.gitignore Ignore .venv files created by virtualenvwrapper and virtualfish for auto-activation purposes. --- Global/VirtualEnv.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Global/VirtualEnv.gitignore b/Global/VirtualEnv.gitignore index 3fab25b5..043786df 100644 --- a/Global/VirtualEnv.gitignore +++ b/Global/VirtualEnv.gitignore @@ -6,3 +6,4 @@ [Ll]ib [Ss]cripts pyvenv.cfg +.venv From 0bb759363f51b53363666ae620e171bbf6a738c3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Istv=C3=A1n=20F=C3=B6ldh=C3=A1zi?= Date: Thu, 29 Jan 2015 14:11:33 +0100 Subject: [PATCH 002/117] Add Tern plugin to Eclipse.gitignore The Tern plugin generate a '.tern-project' file in the project directory. (https://github.com/angelozerr/tern.java/wiki/Tern-Eclipse-IDE) --- Global/Eclipse.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Global/Eclipse.gitignore b/Global/Eclipse.gitignore index 81e44304..29d619b0 100644 --- a/Global/Eclipse.gitignore +++ b/Global/Eclipse.gitignore @@ -32,5 +32,8 @@ local.properties # sbteclipse plugin .target +# Tern plugin +.tern-project + # TeXlipse plugin .texlipse From b6d9dd9f6b766bc2afcff42acc0a0c39378d4755 Mon Sep 17 00:00:00 2001 From: wisitsaks Date: Fri, 20 Feb 2015 10:55:34 +0700 Subject: [PATCH 003/117] Update VisualStudio.gitignore ignore all files in Log/log folder --- VisualStudio.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index 41d71695..67f1ff5f 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -21,6 +21,7 @@ build/ bld/ [Bb]in/ [Oo]bj/ +[Ll]og/ # Visual Studo 2015 cache/options directory .vs/ From b75ce44424559da6c72e359f6bc13bad815b8731 Mon Sep 17 00:00:00 2001 From: Ray Fang Date: Tue, 14 Apr 2015 21:44:20 +0800 Subject: [PATCH 004/117] Update JetBrains.gitignore according to the knowledge base article --- Global/JetBrains.gitignore | 30 ++++++++++++------------------ 1 file changed, 12 insertions(+), 18 deletions(-) diff --git a/Global/JetBrains.gitignore b/Global/JetBrains.gitignore index dff645a0..6b3ea2a7 100644 --- a/Global/JetBrains.gitignore +++ b/Global/JetBrains.gitignore @@ -1,32 +1,26 @@ # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm - -*.iml - -## Directory-based project format: -.idea/ -# if you remove the above rule, at least ignore the following: +# Reference https://intellij-support.jetbrains.com/entries/23393067 # User-specific stuff: -# .idea/workspace.xml -# .idea/tasks.xml -# .idea/dictionaries +.idea/workspace.xml +.idea/tasks.xml +.idea/dictionaries # 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: From 456199c5b70adccbd82a4fadce0a2fb4b92a1493 Mon Sep 17 00:00:00 2001 From: Hugo Date: Mon, 11 May 2015 11:30:50 +0300 Subject: [PATCH 005/117] Ignore temp Hypothesis test things https://github.com/DRMacIver/hypothesis https://hypothesis.readthedocs.org --- Python.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Python.gitignore b/Python.gitignore index a65d0466..7d440988 100644 --- a/Python.gitignore +++ b/Python.gitignore @@ -43,6 +43,7 @@ htmlcov/ nosetests.xml coverage.xml *,cover +.hypothesis/ # Translations *.mo From 457f6464a77881e0408269686dd0698c3b90a98e Mon Sep 17 00:00:00 2001 From: Capi Etheriel Date: Fri, 5 Jun 2015 12:35:49 -0300 Subject: [PATCH 006/117] document Vim file patterns --- Global/Vim.gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Global/Vim.gitignore b/Global/Vim.gitignore index 6c5ee8df..325bd576 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 *~ From f85cff8fbeb8bf07dd1217722a617d947160f556 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Antoine=20C=C5=93ur?= Date: Mon, 8 Jun 2015 12:15:40 +0200 Subject: [PATCH 007/117] DerivedData and xcuserdata are folders; *.xcuserstate is always inside xcuserdata folder --- Global/Xcode.gitignore | 5 ++--- Objective-C.gitignore | 5 ++--- Swift.gitignore | 5 ++--- 3 files changed, 6 insertions(+), 9 deletions(-) diff --git a/Global/Xcode.gitignore b/Global/Xcode.gitignore index d07b7894..c08bace2 100644 --- a/Global/Xcode.gitignore +++ b/Global/Xcode.gitignore @@ -4,7 +4,7 @@ ## Build generated build/ -DerivedData +DerivedData/ ## Various settings *.pbxuser @@ -15,9 +15,8 @@ DerivedData !default.mode2v3 *.perspectivev3 !default.perspectivev3 -xcuserdata +xcuserdata/ ## Other *.xccheckout *.moved-aside -*.xcuserstate diff --git a/Objective-C.gitignore b/Objective-C.gitignore index 7f24b4de..59f6862a 100644 --- a/Objective-C.gitignore +++ b/Objective-C.gitignore @@ -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 -*.xcuserstate ## Obj-C/Swift specific *.hmap diff --git a/Swift.gitignore b/Swift.gitignore index 583de456..e278bf19 100644 --- a/Swift.gitignore +++ b/Swift.gitignore @@ -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 -*.xcuserstate ## Obj-C/Swift specific *.hmap From 09a2358b7a69726a43434997f1d945ba82d4d6f6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ma=C3=AFeul=20Rouquette?= Date: Sat, 18 Jul 2015 13:05:19 +0200 Subject: [PATCH 008/117] reledmac use one individual file by series of endnotes : .Aend, .Bend, .Cend etc. See the changelog in reledmac handbook or https://github.com/maieul/ledmac/commit/7fedc07f5bf2af21c86a237957790cb6fdce78a7#diff-60c898960cc69e6fde87e84ddef7d910R11391 --- TeX.gitignore | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/TeX.gitignore b/TeX.gitignore index a7a84bc9..f8b23151 100644 --- a/TeX.gitignore +++ b/TeX.gitignore @@ -49,8 +49,8 @@ acs-*.bib *.snm *.vrb -#(e)ledmac/(e)ledpar -*.end +#(r)(e)ledmac/(r)(e)ledpar +*.?end *.[1-9] *.[1-9][0-9] *.[1-9][0-9][0-9] From bc776141620803a57fc330edabc85389b1ce8b0a Mon Sep 17 00:00:00 2001 From: Manav Mandhani Date: Tue, 28 Jul 2015 15:23:02 -0500 Subject: [PATCH 009/117] Include ipython notebook checkpoints to gitignore --- Python.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Python.gitignore b/Python.gitignore index a65d0466..4caad72d 100644 --- a/Python.gitignore +++ b/Python.gitignore @@ -56,3 +56,6 @@ docs/_build/ # PyBuilder target/ + +#Ipython Notebook +.ipynb_checkpoints From dfe46fd1682ec4b3378127164dc5a59987b57939 Mon Sep 17 00:00:00 2001 From: Patrick Fasano Date: Sun, 2 Aug 2015 16:40:16 -0400 Subject: [PATCH 010/117] Update Eagle.gitignore Ignore temporary files created by the autorouter --- Eagle.gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Eagle.gitignore b/Eagle.gitignore index a5410348..b12e5bfe 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 From 2d862c129e8ee7988fe29e371dd23e0a79d588f3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Haberth=C3=BCr?= Date: Tue, 4 Aug 2015 10:10:16 +0200 Subject: [PATCH 011/117] Adding more files to ignore when using minitoc As per http://tex.stackexchange.com/q/258515/828 --- TeX.gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/TeX.gitignore b/TeX.gitignore index a7a84bc9..19930d2f 100644 --- a/TeX.gitignore +++ b/TeX.gitignore @@ -93,6 +93,8 @@ acs-*.bib # minitoc *.maf +*.mlf +*.mlt *.mtc *.mtc[0-9] *.mtc[1-9][0-9] From 14fe6b0a5c149b60ccd5768eaf540f22985f9c8f Mon Sep 17 00:00:00 2001 From: Jonathan Boulanger Date: Tue, 4 Aug 2015 12:13:51 -0400 Subject: [PATCH 012/117] Create Elm.gitignore .gitignore for Elm projects. Ignores installed packages (elm-package.json) and elm-stuff/, as these files will be generated once elm-package has been run for a .elm file. This is also beneficial where dependencies have changed, and an install package is no longer required. elm-repl generated files have also been ignored. Most of the time, elm-repl manages to delete these files automatically, but there are scenarios where these files are not deleted on the closing of elm-repl --- Elm.gitignore | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 Elm.gitignore diff --git a/Elm.gitignore b/Elm.gitignore new file mode 100644 index 00000000..24c03e28 --- /dev/null +++ b/Elm.gitignore @@ -0,0 +1,5 @@ +# elm-package generated files +elm-package.json +elm-stuff/ +# elm-repl generated files +repl-temp-* From 7e09dc6a4e57c161211417d78d63e6db78b5fb59 Mon Sep 17 00:00:00 2001 From: Fabian Raab Date: Mon, 24 Aug 2015 18:02:05 +0200 Subject: [PATCH 013/117] add .fuse_hidden* to Linux --- Global/Linux.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Global/Linux.gitignore b/Global/Linux.gitignore index 5932ea17..f709203d 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 deleted file handle open +.fuse_hidden* + # KDE directory preferences .directory From 7ea5e704a4ffff2a883f326f0323eeba44b81da5 Mon Sep 17 00:00:00 2001 From: Fabian Raab Date: Mon, 24 Aug 2015 18:12:34 +0200 Subject: [PATCH 014/117] improve description of .fuse_hidden --- Global/Linux.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Global/Linux.gitignore b/Global/Linux.gitignore index f709203d..cc958689 100644 --- a/Global/Linux.gitignore +++ b/Global/Linux.gitignore @@ -1,6 +1,6 @@ *~ -# temporary files which can be created if a process still has a deleted file handle open +# temporary files which can be created if a process still has a handle open of a deleted file .fuse_hidden* # KDE directory preferences From bd9f168a81deeb683214dce1a0b3b951798312b8 Mon Sep 17 00:00:00 2001 From: Ahmed Baracat Date: Tue, 25 Aug 2015 22:36:00 +0200 Subject: [PATCH 015/117] Allow for ignoring other important files Ignore build, MacOSX and Windows files --- Unity.gitignore | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/Unity.gitignore b/Unity.gitignore index 9de94098..9c0faa72 100644 --- a/Unity.gitignore +++ b/Unity.gitignore @@ -19,3 +19,14 @@ # Unity3D Generated File On Crash Reports sysinfo.txt + +# Builds +*.apk +*.unitypackage + +# MacOSX-specific +.DS_Store + +# Windows-specific +thumbs.db + From 52405705da0346bb19bb5fdde4c8ada80ccefcaf Mon Sep 17 00:00:00 2001 From: Ahmed Baracat Date: Wed, 26 Aug 2015 11:49:56 +0200 Subject: [PATCH 016/117] Removed OS-specific rules --- Unity.gitignore | 7 ------- 1 file changed, 7 deletions(-) diff --git a/Unity.gitignore b/Unity.gitignore index 9c0faa72..60d2e893 100644 --- a/Unity.gitignore +++ b/Unity.gitignore @@ -23,10 +23,3 @@ sysinfo.txt # Builds *.apk *.unitypackage - -# MacOSX-specific -.DS_Store - -# Windows-specific -thumbs.db - From 9e35c8edb6b5f0e05a45d9dfb255d367811565f0 Mon Sep 17 00:00:00 2001 From: John Nycz Date: Wed, 26 Aug 2015 13:44:50 -0400 Subject: [PATCH 017/117] Incorrect file path Old Path sites/all/README.txt New Path sites/README.txt --- Drupal.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Drupal.gitignore b/Drupal.gitignore index 04aed3b6..0d2fe537 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 From 338d8f736c5c7f21008a0deec0ed0ddf1ae2db22 Mon Sep 17 00:00:00 2001 From: Michael Stegmann Date: Wed, 2 Sep 2015 15:46:40 +0200 Subject: [PATCH 018/117] Windows Azure Emulator Ignoring directory "efc" and "rfc" created by the Windows Azure Emulator Directory before starting emulator the first time: Directory: C:\temp\AzureCloudService1\AzureCloudService1 Mode LastWriteTime Length Name ---- ------------- ------ ---- d----- 9/1/2015 9:16 AM bin d----- 9/1/2015 9:16 AM WorkerRole1Content -a---- 9/1/2015 9:16 AM 3014 AzureCloudService1.ccproj -a---- 9/1/2015 9:16 AM 144 AzureCloudService1.ccproj.user -a---- 9/1/2015 9:16 AM 505 ServiceConfiguration.Cloud.cscfg -a---- 9/1/2015 9:16 AM 505 ServiceConfiguration.Local.cscfg -a---- 9/1/2015 9:16 AM 428 ServiceDefinition.csdef And after starting the Emulator: Directory: C:\temp\AzureCloudService1\AzureCloudService1 Mode LastWriteTime Length Name ---- ------------- ------ ---- d----- 9/1/2015 9:16 AM bin d----- 9/1/2015 9:19 AM csx d----- 9/1/2015 9:19 AM ecf d----- 9/1/2015 9:19 AM obj d----- 9/1/2015 9:19 AM rcf d----- 9/1/2015 9:16 AM WorkerRole1Content -a---- 9/1/2015 9:16 AM 3014 AzureCloudService1.ccproj -a---- 9/1/2015 9:16 AM 144 AzureCloudService1.ccproj.user -a---- 9/1/2015 9:16 AM 505 ServiceConfiguration.Cloud.cscfg -a---- 9/1/2015 9:16 AM 505 ServiceConfiguration.Local.cscfg -a---- 9/1/2015 9:16 AM 428 ServiceDefinition.csdef --- VisualStudio.gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index 150691aa..e37f6611 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -155,6 +155,10 @@ publish/ csx/ *.build.csdef +# Windows Azure Emulator +efc/ +rfc/ + # Windows Store app package directory AppPackages/ From 9978001b13ad08bc2e67dafcc2ac66fa714762f6 Mon Sep 17 00:00:00 2001 From: Paolo Fulgoni Date: Fri, 11 Sep 2015 17:16:42 +0200 Subject: [PATCH 019/117] Add rule for MS PowerPoint temporary files --- Global/MicrosoftOffice.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Global/MicrosoftOffice.gitignore b/Global/MicrosoftOffice.gitignore index 412297bb..4a2edc7e 100644 --- a/Global/MicrosoftOffice.gitignore +++ b/Global/MicrosoftOffice.gitignore @@ -8,3 +8,6 @@ # Excel Backup File *.xlk + +# PowerPoint temporary +~$*.ppt* From b55b8911c351ac0f34cb6d65aca0b34a8c82fe00 Mon Sep 17 00:00:00 2001 From: James Jackson-South Date: Tue, 15 Sep 2015 17:48:17 +1000 Subject: [PATCH 020/117] Update Umbraco.gitignore Add ImageProcessor cached files and nuget package updates --- Umbraco.gitignore | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/Umbraco.gitignore b/Umbraco.gitignore index 21af92de..d5877017 100644 --- a/Umbraco.gitignore +++ b/Umbraco.gitignore @@ -1,12 +1,21 @@ # 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/ +**/App_Data/FeedCache/ +**/App_Data/courier/revisions/ +**/App_Data/courier/cache/ +**/App_Data/umbraco.licensing.log.txt +**/App_Data/*.udt +**/aspnet_client/ # Ignore Umbraco content cache file **/App_Data/umbraco.config @@ -15,3 +24,9 @@ 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/ +Cached/ From b510c6633eb7dc66cd9fb6a27509f9ad2a2bc3ce Mon Sep 17 00:00:00 2001 From: Edson Dota Date: Fri, 2 Oct 2015 09:27:59 -0300 Subject: [PATCH 021/117] Add local_settings to Django's ignore --- Python.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Python.gitignore b/Python.gitignore index a65d0466..ede8087d 100644 --- a/Python.gitignore +++ b/Python.gitignore @@ -50,6 +50,7 @@ coverage.xml # Django stuff: *.log +local_settings.py # Sphinx documentation docs/_build/ From 8822253ae43658367872f446148725d5ea850fa8 Mon Sep 17 00:00:00 2001 From: enzian Date: Wed, 7 Oct 2015 14:40:06 +0200 Subject: [PATCH 022/117] added excludes for vendored directories (since GO 1.5) --- Go.gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Go.gitignore b/Go.gitignore index daf913b1..a8843541 100644 --- a/Go.gitignore +++ b/Go.gitignore @@ -22,3 +22,7 @@ _testmain.go *.exe *.test *.prof + +# GO15VENDOREXPERIMENT flag specifics +vendor/** +!vendor/manifest \ No newline at end of file From a2d7278d61d5e33a9408f0b675d65b8bb60b189b Mon Sep 17 00:00:00 2001 From: Jonathan Chu Date: Sun, 11 Oct 2015 21:47:46 -0400 Subject: [PATCH 023/117] Ignore all Emacs flycheck_*.el files --- Global/Emacs.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Global/Emacs.gitignore b/Global/Emacs.gitignore index e5327bad..f4e7fe79 100644 --- a/Global/Emacs.gitignore +++ b/Global/Emacs.gitignore @@ -30,3 +30,6 @@ tramp # cask packages .cask/ + +# Flycheck +flycheck_*.el From f4cf36c5e1e275cb40b981f84be0cd723cd0c152 Mon Sep 17 00:00:00 2001 From: Vitor Prado Date: Wed, 14 Oct 2015 13:45:12 -0300 Subject: [PATCH 024/117] Ignoring build folder inside app module in Android projects The `*/build` folder should be ignored because the android structure generate files and outputs inside this folder. --- Android.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Android.gitignore b/Android.gitignore index c9c2248a..7ee6ac0b 100644 --- a/Android.gitignore +++ b/Android.gitignore @@ -15,6 +15,7 @@ gen/ # Gradle files .gradle/ build/ +*/build/ # Local configuration file (sdk path, etc) local.properties From a811a95e6390eac2e135efe94a3120847f173bbf Mon Sep 17 00:00:00 2001 From: Joshua Mabina Date: Thu, 15 Oct 2015 17:58:00 +0300 Subject: [PATCH 025/117] added .env.example for projects generated with laravel new command --- Laravel.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Laravel.gitignore b/Laravel.gitignore index 36d7adeb..8b4e7b85 100644 --- a/Laravel.gitignore +++ b/Laravel.gitignore @@ -2,3 +2,4 @@ .env.*.php .env.php .env +.env.example From 4f043859d8437f784508423298adafd34464da42 Mon Sep 17 00:00:00 2001 From: Felix Krause Date: Sat, 17 Oct 2015 13:30:55 -0700 Subject: [PATCH 026/117] Fixed whitespace --- Objective-C.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Objective-C.gitignore b/Objective-C.gitignore index 05096f66..033ccce2 100644 --- a/Objective-C.gitignore +++ b/Objective-C.gitignore @@ -33,7 +33,7 @@ xcuserdata # 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 # -#Pods/ +# Pods/ # Carthage # From 807a0171926f4630f18d3ae28d6333623dd43cf9 Mon Sep 17 00:00:00 2001 From: Felix Krause Date: Sat, 17 Oct 2015 13:31:07 -0700 Subject: [PATCH 027/117] Fixed Cocoapods link --- Swift.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Swift.gitignore b/Swift.gitignore index d571cb2c..fba17246 100644 --- a/Swift.gitignore +++ b/Swift.gitignore @@ -31,7 +31,7 @@ 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-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/ From efea7418600b3898702bb9e2ac5987efe17bbff5 Mon Sep 17 00:00:00 2001 From: Felix Krause Date: Sat, 17 Oct 2015 13:31:15 -0700 Subject: [PATCH 028/117] Switched to https --- Objective-C.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Objective-C.gitignore b/Objective-C.gitignore index 033ccce2..fba17246 100644 --- a/Objective-C.gitignore +++ b/Objective-C.gitignore @@ -31,7 +31,7 @@ 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 +# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control # # Pods/ From 68ffe8de3278d46cc091d78c9a20620069bd8d7a Mon Sep 17 00:00:00 2001 From: Felix Krause Date: Sat, 17 Oct 2015 13:33:41 -0700 Subject: [PATCH 029/117] Added fastlane to iOS projects --- Objective-C.gitignore | 8 ++++++++ Swift.gitignore | 8 ++++++++ 2 files changed, 16 insertions(+) diff --git a/Objective-C.gitignore b/Objective-C.gitignore index fba17246..b15babe7 100644 --- a/Objective-C.gitignore +++ b/Objective-C.gitignore @@ -41,3 +41,11 @@ 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. + +fastlane/report.xml +fastlane/screenshots diff --git a/Swift.gitignore b/Swift.gitignore index fba17246..b15babe7 100644 --- a/Swift.gitignore +++ b/Swift.gitignore @@ -41,3 +41,11 @@ 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. + +fastlane/report.xml +fastlane/screenshots From 91f00b1c8e995040c82a6168496f7e82bfea3d57 Mon Sep 17 00:00:00 2001 From: Victor Rodrigues Date: Mon, 19 Oct 2015 21:20:09 +0200 Subject: [PATCH 030/117] Add /cover to Elixir.gitignore --- Elixir.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Elixir.gitignore b/Elixir.gitignore index 96076718..755b6055 100644 --- a/Elixir.gitignore +++ b/Elixir.gitignore @@ -1,4 +1,5 @@ /_build +/cover /deps erl_crash.dump *.ez From db23e4f579f4316647e4650bd424447cac0ad75a Mon Sep 17 00:00:00 2001 From: Gary Smith Date: Wed, 21 Oct 2015 09:11:27 -0400 Subject: [PATCH 031/117] Update Dart.gitignore Modify patterns to explicitly match directories Modified patterns to match files created by tool in Dart SDK 1.12: - Added patterns matching files listed in https://www.dartlang.org/tools/private-files.html - Added *.js, removed *.js_, *.dart.js to match files created by dart2js --- Dart.gitignore | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/Dart.gitignore b/Dart.gitignore index b1287d98..21d34d6e 100644 --- a/Dart.gitignore +++ b/Dart.gitignore @@ -1,18 +1,18 @@ -# Don’t commit the following directories created by pub. +# Files and directories created by pub .buildlog +.packages +.project .pub/ build/ -packages -.packages +**/packages/ -# Or the files created by dart2js. -*.dart.js -*.js_ +# Files created by dart2js +*.js *.js.deps *.js.map -# Or the files created by dartdoc. +# Directory created by dartdoc doc/ -# 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 From 4892e962c2f95b055e368a84e6f7f88542d2dc5d Mon Sep 17 00:00:00 2001 From: Gary Smith Date: Wed, 21 Oct 2015 10:29:21 -0400 Subject: [PATCH 032/117] Add *.info.json to dart2js patterns --- Dart.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Dart.gitignore b/Dart.gitignore index 21d34d6e..fc5964d7 100644 --- a/Dart.gitignore +++ b/Dart.gitignore @@ -10,6 +10,7 @@ build/ *.js *.js.deps *.js.map +*.info.json # Directory created by dartdoc doc/ From 3a622f2dcba185683746b72ade44b64a6b9db48d Mon Sep 17 00:00:00 2001 From: Gary Smith Date: Wed, 21 Oct 2015 10:45:49 -0400 Subject: [PATCH 033/117] Add *.precompiled.js Add *.precompiled.js as per https://stackoverflow.com/questions/20314796/which-files-are-generated-when-executing-dart2js-and-why --- Dart.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Dart.gitignore b/Dart.gitignore index fc5964d7..4af0fb23 100644 --- a/Dart.gitignore +++ b/Dart.gitignore @@ -8,6 +8,7 @@ build/ # Files created by dart2js *.js +*.precompiled.js *.js.deps *.js.map *.info.json From 36817de7ee5abcd818d822b9affbf4bd091eeb83 Mon Sep 17 00:00:00 2001 From: Denis Grinyuk Date: Thu, 22 Oct 2015 14:35:53 +0300 Subject: [PATCH 034/117] Some details for Castalia statistics file Before XE7 Castalia used to be standalone expert thus I suppose here should be some grounding --- Delphi.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Delphi.gitignore b/Delphi.gitignore index 8d5d458f..800ceb11 100644 --- a/Delphi.gitignore +++ b/Delphi.gitignore @@ -53,5 +53,5 @@ __history/ *.~* -# Castalia statistics file +# Castalia statistics file (since XE7 Castalia is distributed with Delphi) *.stat From 7f9f6a15353f29da42a9e157d8d582068bd35d65 Mon Sep 17 00:00:00 2001 From: Gary Smith Date: Fri, 23 Oct 2015 12:46:40 -0400 Subject: [PATCH 035/117] Updates based on discussions with Dart team MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 1. Updates based on discussions with Dart team See https://github.com/dart-lang/www.dartlang.org/issues/1496 * Removed *.precompiled.js - not generated by dart2js any more * *.js_ → *.part.js Also: 2. Added guidance comments 3. doc/ → doc/api as manually written documents may be in doc/ 4. Added reference to appropriate Dart web site page --- Dart.gitignore | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/Dart.gitignore b/Dart.gitignore index 4af0fb23..31faaa45 100644 --- a/Dart.gitignore +++ b/Dart.gitignore @@ -1,3 +1,5 @@ +# See https://www.dartlang.org/tools/private-files.html + # Files and directories created by pub .buildlog .packages @@ -7,14 +9,19 @@ build/ **/packages/ # Files created by dart2js -*.js -*.precompiled.js +# (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.deps *.js.map *.info.json # Directory created by dartdoc -doc/ +doc/api -# Don't commit pubspec lock file (Library packages only! Remove pattern if developing an application package) +# Don't commit pubspec lock file +# (Library packages only! Remove pattern if developing an application package) pubspec.lock From 344fc711d0336313af767ef75be3f937da7dd144 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=A9lio?= Date: Fri, 23 Oct 2015 16:58:40 -0300 Subject: [PATCH 036/117] Added some folders the are "compiled" things /vendor - composer modules can be (and probably should) recompiled. Laravel comes with this line by default. /node_modules - npm modules, same of /vendor. Laravel comes with this line by default. /app/storage - Laravel things that can be despised (in staging) like cache, views cache and sessions --- Laravel.gitignore | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Laravel.gitignore b/Laravel.gitignore index 8b4e7b85..79906c80 100644 --- a/Laravel.gitignore +++ b/Laravel.gitignore @@ -3,3 +3,8 @@ .env.php .env .env.example + +/vendor +/node_modules +/app/storage + From 7673714c7e182af72dc6d68fc1fee2d6fd4f9e10 Mon Sep 17 00:00:00 2001 From: Gary Smith Date: Sat, 24 Oct 2015 12:46:47 -0400 Subject: [PATCH 037/117] Fixed generated part js file pattern --- Dart.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dart.gitignore b/Dart.gitignore index 31faaa45..7a9bc6c6 100644 --- a/Dart.gitignore +++ b/Dart.gitignore @@ -14,7 +14,7 @@ build/ # Convention is to use extension '.dart.js' for Dart compiled to Javascript to # differentiate from explicit Javascript files) *.dart.js -*.js.part +*.part.js *.js.deps *.js.map *.info.json From eefbb4f8f2593feaa844f3ccfc6e9a9718201a78 Mon Sep 17 00:00:00 2001 From: Gary Smith Date: Sat, 24 Oct 2015 14:01:53 -0400 Subject: [PATCH 038/117] doc/api/ explicitly a directory --- Dart.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dart.gitignore b/Dart.gitignore index 7a9bc6c6..7c280441 100644 --- a/Dart.gitignore +++ b/Dart.gitignore @@ -20,7 +20,7 @@ build/ *.info.json # Directory created by dartdoc -doc/api +doc/api/ # Don't commit pubspec lock file # (Library packages only! Remove pattern if developing an application package) From 0a63fa39fcc3e181ac6ae9b250b3912f2f778020 Mon Sep 17 00:00:00 2001 From: Sam Sheffres Date: Tue, 27 Oct 2015 15:06:37 +0600 Subject: [PATCH 039/117] Add a gitignore for Unreal Engine 4 --- UE4.gitignore | 60 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 60 insertions(+) create mode 100644 UE4.gitignore diff --git a/UE4.gitignore b/UE4.gitignore new file mode 100644 index 00000000..80f9fff4 --- /dev/null +++ b/UE4.gitignore @@ -0,0 +1,60 @@ +# 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 +*.xcodeproj +*.suo +*.opensdf +*.sdf +*.sln + +# 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/* From 710884d4f518ac8b3c23bbec060433f8336defb5 Mon Sep 17 00:00:00 2001 From: Jeroen Deviaene Date: Tue, 27 Oct 2015 23:05:02 +0100 Subject: [PATCH 040/117] Create gitignore for Lumen --- Lumen.gitignore | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 Lumen.gitignore diff --git a/Lumen.gitignore b/Lumen.gitignore new file mode 100644 index 00000000..0e042c23 --- /dev/null +++ b/Lumen.gitignore @@ -0,0 +1,8 @@ +.env.*.php +.env.php +.env +.env.example + +vendor/ +node_modules/ +storage/ From f652ad762774e35b1553b8898dcc1154e819921d Mon Sep 17 00:00:00 2001 From: Jeroen Deviaene Date: Tue, 27 Oct 2015 23:07:36 +0100 Subject: [PATCH 041/117] Create gitignore for Laravel5 In Laravel 5 the storage folder was moved to the root of the application. The compiled.php has also been moved to the bootstrap/cache directory This was no longer compatible with the previous laravel.gitignore. --- Laravel5.gitignore | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 Laravel5.gitignore diff --git a/Laravel5.gitignore b/Laravel5.gitignore new file mode 100644 index 00000000..c895d944 --- /dev/null +++ b/Laravel5.gitignore @@ -0,0 +1,9 @@ +bootstrap/cache/ +.env.*.php +.env.php +.env +.env.example + +vendor/ +node_modules/ +storage/ From 1d16414b1f8fe9ca10dd85596103566c663e07c4 Mon Sep 17 00:00:00 2001 From: jerodev Date: Wed, 28 Oct 2015 08:43:54 +0100 Subject: [PATCH 042/117] Merged laravel and laravel5 --- Laravel.gitignore | 11 ++++++----- Laravel5.gitignore | 9 --------- 2 files changed, 6 insertions(+), 14 deletions(-) delete mode 100644 Laravel5.gitignore diff --git a/Laravel.gitignore b/Laravel.gitignore index 79906c80..2a6c46de 100644 --- a/Laravel.gitignore +++ b/Laravel.gitignore @@ -1,10 +1,11 @@ -/bootstrap/compiled.php +bootstrap/compiled.php +bootstrap/cache .env.*.php .env.php .env .env.example -/vendor -/node_modules -/app/storage - +app/storage/ +node_modules/ +storage/ +vendor/ \ No newline at end of file diff --git a/Laravel5.gitignore b/Laravel5.gitignore deleted file mode 100644 index c895d944..00000000 --- a/Laravel5.gitignore +++ /dev/null @@ -1,9 +0,0 @@ -bootstrap/cache/ -.env.*.php -.env.php -.env -.env.example - -vendor/ -node_modules/ -storage/ From 3a838f8640766d0a5894d700ce38c55477a63859 Mon Sep 17 00:00:00 2001 From: jerodev Date: Wed, 28 Oct 2015 13:24:11 +0100 Subject: [PATCH 043/117] Merged Laravel & Lumen + grouped rules --- Laravel.gitignore | 15 +++++++++------ Lumen.gitignore | 8 -------- 2 files changed, 9 insertions(+), 14 deletions(-) delete mode 100644 Lumen.gitignore diff --git a/Laravel.gitignore b/Laravel.gitignore index 2a6c46de..0790dea4 100644 --- a/Laravel.gitignore +++ b/Laravel.gitignore @@ -1,11 +1,14 @@ +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 - -app/storage/ -node_modules/ -storage/ -vendor/ \ No newline at end of file +.env.example \ No newline at end of file diff --git a/Lumen.gitignore b/Lumen.gitignore deleted file mode 100644 index 0e042c23..00000000 --- a/Lumen.gitignore +++ /dev/null @@ -1,8 +0,0 @@ -.env.*.php -.env.php -.env -.env.example - -vendor/ -node_modules/ -storage/ From 5dda2849bff44c22d9813c56c869f4c18bdc55d9 Mon Sep 17 00:00:00 2001 From: jerodev Date: Wed, 28 Oct 2015 13:28:46 +0100 Subject: [PATCH 044/117] missed slash in laravel.gitignore --- Laravel.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Laravel.gitignore b/Laravel.gitignore index 0790dea4..b4b05113 100644 --- a/Laravel.gitignore +++ b/Laravel.gitignore @@ -6,7 +6,7 @@ bootstrap/compiled.php app/storage/ # Laravel 5 & Lumen specific -bootstrap/cache +bootstrap/cache/ storage/ .env.*.php .env.php From 18a4bd70c71fd30df2180c515e7c2b36f93a8819 Mon Sep 17 00:00:00 2001 From: Sam Sheffres Date: Thu, 29 Oct 2015 12:09:21 +0600 Subject: [PATCH 045/117] Rename UE4 gitignore to UnrealEngine --- UE4.gitignore => UnrealEngine.gitignore | 4 ---- 1 file changed, 4 deletions(-) rename UE4.gitignore => UnrealEngine.gitignore (91%) diff --git a/UE4.gitignore b/UnrealEngine.gitignore similarity index 91% rename from UE4.gitignore rename to UnrealEngine.gitignore index 80f9fff4..e6fc76f8 100644 --- a/UE4.gitignore +++ b/UnrealEngine.gitignore @@ -37,10 +37,6 @@ *.sdf *.sln -# Precompiled Assets -SourceArt/**/*.png -SourceArt/**/*.tga - # Binary Files Binaries/* From e3cd87b2764ae4c583185c0b2a465424b8ac64ca Mon Sep 17 00:00:00 2001 From: Sam Sheffres Date: Thu, 29 Oct 2015 12:14:21 +0600 Subject: [PATCH 046/117] Re-add SourceArt Exclusions I removed on Accident --- UnrealEngine.gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/UnrealEngine.gitignore b/UnrealEngine.gitignore index e6fc76f8..80f9fff4 100644 --- a/UnrealEngine.gitignore +++ b/UnrealEngine.gitignore @@ -37,6 +37,10 @@ *.sdf *.sln +# Precompiled Assets +SourceArt/**/*.png +SourceArt/**/*.tga + # Binary Files Binaries/* From 2b504e6ba37811a507535933a56a44359ad7488f Mon Sep 17 00:00:00 2001 From: Felix Wehnert Date: Thu, 29 Oct 2015 09:13:17 +0100 Subject: [PATCH 047/117] Update TeX.gitignore --- TeX.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/TeX.gitignore b/TeX.gitignore index a7a84bc9..5b08eaf8 100644 --- a/TeX.gitignore +++ b/TeX.gitignore @@ -120,6 +120,9 @@ _minted* *.sympy sympy-plots-for-*.tex/ +# Texpad +.texpadtmp + # TikZ & PGF *.dpth *.md5 From 38d6cac990a82a1f7814571634e08295086763b5 Mon Sep 17 00:00:00 2001 From: Thomas Steinholz Date: Thu, 29 Oct 2015 17:24:45 -0400 Subject: [PATCH 048/117] Update JetBrains.gitignore Added a forgotten IDE to the .gitignore documentation. Why? For completeness and correctness What? [Webstorm](https://www.jetbrains.com/webstorm). --- Global/JetBrains.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Global/JetBrains.gitignore b/Global/JetBrains.gitignore index 177bc80b..5d2e327f 100644 --- a/Global/JetBrains.gitignore +++ b/Global/JetBrains.gitignore @@ -1,4 +1,4 @@ -# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio +# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm *.iml From 2111560949a6458d3d3fe1b3b3c822369a4254d7 Mon Sep 17 00:00:00 2001 From: Ben Reeves Date: Sat, 31 Oct 2015 17:17:36 -0400 Subject: [PATCH 049/117] Removed Redundant Lines samsheff accidentally typed a few of the lines twice ^.^ --- UnrealEngine.gitignore | 2 -- 1 file changed, 2 deletions(-) diff --git a/UnrealEngine.gitignore b/UnrealEngine.gitignore index 80f9fff4..247f644a 100644 --- a/UnrealEngine.gitignore +++ b/UnrealEngine.gitignore @@ -31,11 +31,9 @@ # These project files can be generated by the engine *.xcodeproj *.sln -*.xcodeproj *.suo *.opensdf *.sdf -*.sln # Precompiled Assets SourceArt/**/*.png From 3b0b68838d24c2021cd6bc89de665dfa6bc809f0 Mon Sep 17 00:00:00 2001 From: Frieder Bluemle Date: Tue, 3 Nov 2015 01:29:12 +0800 Subject: [PATCH 050/117] Revert "Ignoring build folder inside app module in Android projects" This reverts commit f4cf36c5e1e275cb40b981f84be0cd723cd0c152. --- Android.gitignore | 1 - 1 file changed, 1 deletion(-) diff --git a/Android.gitignore b/Android.gitignore index 7ee6ac0b..c9c2248a 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 From f4faeebd86ee1e7c61d98a4265ee28d081dc21f6 Mon Sep 17 00:00:00 2001 From: Julien CROUZET Date: Mon, 2 Nov 2015 19:20:21 +0100 Subject: [PATCH 051/117] Add .npm cache directory --- Node.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Node.gitignore b/Node.gitignore index b38069de..c5e97b5d 100644 --- a/Node.gitignore +++ b/Node.gitignore @@ -26,3 +26,6 @@ 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 From f59e22d1c3571b2b58fcbfee632cdfc51edba5e5 Mon Sep 17 00:00:00 2001 From: Jacer OMRI Date: Tue, 3 Nov 2015 10:16:32 +0100 Subject: [PATCH 052/117] add bower assets as described in the symfony cookbook http://symfony.com/doc/current/cookbook/frontend/bower.html --- Symfony.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Symfony.gitignore b/Symfony.gitignore index c68377d1..6fac1be4 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 From 3885bb94a726bf6386a0bad663e11ee256e22367 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Istv=C3=A1n=20F=C3=B6ldh=C3=A1zi?= Date: Tue, 3 Nov 2015 11:59:53 +0100 Subject: [PATCH 053/117] Update Eclipse.gitignore Add ignore for STS's .springBeans file --- Global/Eclipse.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Global/Eclipse.gitignore b/Global/Eclipse.gitignore index 0e22e957..880dd928 100644 --- a/Global/Eclipse.gitignore +++ b/Global/Eclipse.gitignore @@ -37,3 +37,6 @@ local.properties # TeXlipse plugin .texlipse + +# STS (Spring Tool Suite) +.springBeans From b347454db37e78b91bd80a88d3c7f7828556d55d Mon Sep 17 00:00:00 2001 From: Jesper Utoft Date: Wed, 4 Nov 2015 10:56:54 +0100 Subject: [PATCH 054/117] Add pythontex intermediade files to Tex.gitignore --- TeX.gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/TeX.gitignore b/TeX.gitignore index 5b08eaf8..1dc6d62d 100644 --- a/TeX.gitignore +++ b/TeX.gitignore @@ -120,6 +120,10 @@ _minted* *.sympy sympy-plots-for-*.tex/ +#pythontex +*.pytxcode +pythontex-files-*/ + # Texpad .texpadtmp From 64a19dd501a68b0cbbd2c31d400d15410188002f Mon Sep 17 00:00:00 2001 From: Austin Riendeau Date: Wed, 4 Nov 2015 16:53:53 -0700 Subject: [PATCH 055/117] Revert 2bd7d8ec88bc9fad5aca91951826b16118227554 --- Go.gitignore | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Go.gitignore b/Go.gitignore index a8843541..daf913b1 100644 --- a/Go.gitignore +++ b/Go.gitignore @@ -22,7 +22,3 @@ _testmain.go *.exe *.test *.prof - -# GO15VENDOREXPERIMENT flag specifics -vendor/** -!vendor/manifest \ No newline at end of file From 5f5926a9bba5b04c4dc36bd931a7d13e096f5f0d Mon Sep 17 00:00:00 2001 From: Julien CROUZET Date: Thu, 5 Nov 2015 16:17:54 +0100 Subject: [PATCH 056/117] Ignore REPL history file Like in #1732, Docker images can consider project directoy as $HOME --- Node.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Node.gitignore b/Node.gitignore index c5e97b5d..4796eb8d 100644 --- a/Node.gitignore +++ b/Node.gitignore @@ -29,3 +29,6 @@ node_modules # Optional npm cache directory .npm + +# Optional REPL history +.node_repl_history From f0daa85888e8692f3b3ba08383e1dfb155304690 Mon Sep 17 00:00:00 2001 From: Mike Duigou Date: Thu, 5 Nov 2015 08:01:15 -0800 Subject: [PATCH 057/117] NetBeans file nb-configuration.xml should not be ignored. --- Global/NetBeans.gitignore | 1 - 1 file changed, 1 deletion(-) diff --git a/Global/NetBeans.gitignore b/Global/NetBeans.gitignore index debe0e48..520d91ff 100644 --- a/Global/NetBeans.gitignore +++ b/Global/NetBeans.gitignore @@ -4,5 +4,4 @@ nbbuild/ dist/ nbdist/ nbactions.xml -nb-configuration.xml .nb-gradle/ From 06581f9c741966f7b1ea4f390a84b456a64d6ee8 Mon Sep 17 00:00:00 2001 From: James Jackson-South Date: Fri, 6 Nov 2015 15:04:28 +1100 Subject: [PATCH 058/117] Clean up expired entries, fix whitespace. --- Umbraco.gitignore | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/Umbraco.gitignore b/Umbraco.gitignore index d5877017..ea05e1fb 100644 --- a/Umbraco.gitignore +++ b/Umbraco.gitignore @@ -1,21 +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/ **/App_Data/NuGetBackup/ -**/App_Data/FeedCache/ -**/App_Data/courier/revisions/ -**/App_Data/courier/cache/ -**/App_Data/umbraco.licensing.log.txt -**/App_Data/*.udt -**/aspnet_client/ # Ignore Umbraco content cache file **/App_Data/umbraco.config @@ -25,8 +15,5 @@ !**/App_Data/[Pp]ackages/ !**/[Uu]mbraco/[Dd]eveloper/[Pp]ackages -# ========================= # ImageProcessor DiskCache -# ========================= **/App_Data/cache/ -Cached/ From 84010e499fef0b61d4f3cb29a31138b47837797f Mon Sep 17 00:00:00 2001 From: chenyufeng <503434355@qq.com> Date: Mon, 9 Nov 2015 10:51:42 +0800 Subject: [PATCH 059/117] add *.xcscheme to Global/Xcode.gitignore,Objective-C.gitignore and Swift.gitignore --- Global/Xcode.gitignore | 1 + Objective-C.gitignore | 1 + Swift.gitignore | 1 + 3 files changed, 3 insertions(+) diff --git a/Global/Xcode.gitignore b/Global/Xcode.gitignore index d07b7894..738468cc 100644 --- a/Global/Xcode.gitignore +++ b/Global/Xcode.gitignore @@ -21,3 +21,4 @@ xcuserdata *.xccheckout *.moved-aside *.xcuserstate +*.xcscheme diff --git a/Objective-C.gitignore b/Objective-C.gitignore index b15babe7..8001e5ba 100644 --- a/Objective-C.gitignore +++ b/Objective-C.gitignore @@ -22,6 +22,7 @@ xcuserdata *.moved-aside *.xcuserstate *.xcscmblueprint +*.xcscheme ## Obj-C/Swift specific *.hmap diff --git a/Swift.gitignore b/Swift.gitignore index b15babe7..8001e5ba 100644 --- a/Swift.gitignore +++ b/Swift.gitignore @@ -22,6 +22,7 @@ xcuserdata *.moved-aside *.xcuserstate *.xcscmblueprint +*.xcscheme ## Obj-C/Swift specific *.hmap From 3db9d96ecd6c91e72abf688fca3b89bc826b2ae9 Mon Sep 17 00:00:00 2001 From: Felix Krause Date: Thu, 12 Nov 2015 00:11:58 +0100 Subject: [PATCH 060/117] Added link to more information about the available options --- Objective-C.gitignore | 2 ++ Swift.gitignore | 2 ++ 2 files changed, 4 insertions(+) diff --git a/Objective-C.gitignore b/Objective-C.gitignore index 8001e5ba..4ccb4368 100644 --- a/Objective-C.gitignore +++ b/Objective-C.gitignore @@ -47,6 +47,8 @@ Carthage/Build # # 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/Swift.gitignore b/Swift.gitignore index 8001e5ba..4ccb4368 100644 --- a/Swift.gitignore +++ b/Swift.gitignore @@ -47,6 +47,8 @@ Carthage/Build # # 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 From cd3de4966970bb453ca72b19e25db48f39a97e21 Mon Sep 17 00:00:00 2001 From: Wayne Nilsen Date: Fri, 13 Nov 2015 06:05:10 -0500 Subject: [PATCH 061/117] add Cargo.lock to gitignore file by default See the [official recommendation](http://doc.crates.io/guide.html#cargotoml-vs-cargolock) > * If you're building a library, put Cargo.lock in your .gitignore. > * If you're building an executable, check Cargo.lock into git. --- Rust.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Rust.gitignore b/Rust.gitignore index 37727f91..94408df6 100644 --- a/Rust.gitignore +++ b/Rust.gitignore @@ -9,3 +9,4 @@ # Generated by Cargo /target/ +Cargo.lock From 271aaab77e1de2c529e89b2f2a8221ba86cf8eb2 Mon Sep 17 00:00:00 2001 From: Wayne Nilsen Date: Fri, 13 Nov 2015 11:17:04 -0500 Subject: [PATCH 062/117] added comment --- Rust.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Rust.gitignore b/Rust.gitignore index 94408df6..a29d6856 100644 --- a/Rust.gitignore +++ b/Rust.gitignore @@ -9,4 +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 From 7d2801017c5d98f9a2b871b503d1044e4a0fc940 Mon Sep 17 00:00:00 2001 From: Christopher Bunn Date: Sat, 14 Nov 2015 12:48:28 -0800 Subject: [PATCH 063/117] Updated LICENSE year to 2015 --- LICENSE | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LICENSE b/LICENSE index ac31f1a8..4c9a2ab0 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -Copyright (c) 2014 GitHub, Inc. +Copyright (c) 2015 GitHub, Inc. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), From 381a78b8afedc5a5a59b8e6d903e9a0362dedc27 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Haberth=C3=BCr?= Date: Mon, 16 Nov 2015 09:35:14 +0100 Subject: [PATCH 064/117] Adding endfloat.sty auxiliary files endfloat.sty produces these two auxiliary files. From Section 3.2 of its documentation: > Loading it will have LTEX produce two extra files with .ttt and .fff extensions (for tables and figures, respectively). --- TeX.gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/TeX.gitignore b/TeX.gitignore index 1dc6d62d..d4427994 100644 --- a/TeX.gitignore +++ b/TeX.gitignore @@ -141,3 +141,7 @@ pythontex-files-*/ # WinEdt *.bak *.sav + +# endfloat +*.ttt +*.fff From fde9f07c71c06882567e820d7f6c1bb24819874c Mon Sep 17 00:00:00 2001 From: Denis Grinyuk Date: Mon, 16 Nov 2015 16:07:56 +0300 Subject: [PATCH 065/117] Some C++ file extensions used by Delphi These depend of "C/C++ Output file generation" compiler setting --- Delphi.gitignore | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Delphi.gitignore b/Delphi.gitignore index 800ceb11..89d2d7f9 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,12 @@ *.tds *.dcu *.lib +*.a +*.o # Delphi autogenerated files (duplicated info) *.cfg +*.hpp *Resource.rc # Delphi local files (user-specific info) From fe00bd78b8e0b86cd9124c96588ee9f056801042 Mon Sep 17 00:00:00 2001 From: Denis Grinyuk Date: Mon, 16 Nov 2015 16:19:43 +0300 Subject: [PATCH 066/117] Rarely used binary extension OLE Control eXtension (OCX), created by the Active Form wizard --- Delphi.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Delphi.gitignore b/Delphi.gitignore index 89d2d7f9..7af8d6fc 100644 --- a/Delphi.gitignore +++ b/Delphi.gitignore @@ -43,6 +43,7 @@ *.lib *.a *.o +*.ocx # Delphi autogenerated files (duplicated info) *.cfg From 97dc1fdfc3be743f402dd4a965909f85bc2447d0 Mon Sep 17 00:00:00 2001 From: Nick Brook Date: Thu, 19 Nov 2015 00:24:34 +0000 Subject: [PATCH 067/117] Remove *.xcscheme to Global/Xcode.gitignore,Objective-C.gitignore and Swift.gitignore --- Global/Xcode.gitignore | 1 - Objective-C.gitignore | 1 - Swift.gitignore | 1 - 3 files changed, 3 deletions(-) diff --git a/Global/Xcode.gitignore b/Global/Xcode.gitignore index 738468cc..d07b7894 100644 --- a/Global/Xcode.gitignore +++ b/Global/Xcode.gitignore @@ -21,4 +21,3 @@ xcuserdata *.xccheckout *.moved-aside *.xcuserstate -*.xcscheme diff --git a/Objective-C.gitignore b/Objective-C.gitignore index 4ccb4368..79d9331b 100644 --- a/Objective-C.gitignore +++ b/Objective-C.gitignore @@ -22,7 +22,6 @@ xcuserdata *.moved-aside *.xcuserstate *.xcscmblueprint -*.xcscheme ## Obj-C/Swift specific *.hmap diff --git a/Swift.gitignore b/Swift.gitignore index 4ccb4368..79d9331b 100644 --- a/Swift.gitignore +++ b/Swift.gitignore @@ -22,7 +22,6 @@ xcuserdata *.moved-aside *.xcuserstate *.xcscmblueprint -*.xcscheme ## Obj-C/Swift specific *.hmap From 6d942c5122bc85d9d97f048923651e654d9a491b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Corbasson?= Date: Fri, 20 Nov 2015 00:39:55 +0100 Subject: [PATCH 068/117] Add ignores for autoscan files --- Autotools.gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Autotools.gitignore b/Autotools.gitignore index 053ff52f..88fe3158 100644 --- a/Autotools.gitignore +++ b/Autotools.gitignore @@ -2,6 +2,10 @@ Makefile.in +/autoscan.log +/autoscan-*.log +/configure.scan + # http://www.gnu.org/software/autoconf /autom4te.cache From 35b890428b527f80cffcc7efd6e0c5654e579348 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Corbasson?= Date: Fri, 20 Nov 2015 01:01:04 +0100 Subject: [PATCH 069/117] Update Autotools.gitignore --- Autotools.gitignore | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Autotools.gitignore b/Autotools.gitignore index 88fe3158..1e9158e2 100644 --- a/Autotools.gitignore +++ b/Autotools.gitignore @@ -2,16 +2,16 @@ Makefile.in -/autoscan.log -/autoscan-*.log -/configure.scan - # 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 From ff775c60d314c4139d82294efa2c23caca4f40b8 Mon Sep 17 00:00:00 2001 From: dveim Date: Sun, 29 Nov 2015 20:43:21 +0200 Subject: [PATCH 070/117] remove harmful ignore 'project/project' is valid directory for 'project' project-related files. For example, if one configure his sbt build to use scala files directly from 'project/', dependencies like 'project/project/plugins.sbt' will be ignored because of this line. See http://www.scala-sbt.org/0.13/tutorial/Organizing-Build.html#sbt+is+recursive. --- PlayFramework.gitignore | 1 - 1 file changed, 1 deletion(-) diff --git a/PlayFramework.gitignore b/PlayFramework.gitignore index ae5ec9fe..6d67f119 100644 --- a/PlayFramework.gitignore +++ b/PlayFramework.gitignore @@ -5,7 +5,6 @@ bin/ /lib/ /logs/ /modules -/project/project /project/target /target tmp/ From 935c3701bd1e74869bf99fdab0e3548475b0b79a Mon Sep 17 00:00:00 2001 From: Thomas Steinholz Date: Sun, 29 Nov 2015 14:20:50 -0500 Subject: [PATCH 071/117] Update Qt.gitignore Qt generates build files for me that are `build-Projname-WhateverWhatever` so this change continues to support *-build-* folders as well as others. --- Qt.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Qt.gitignore b/Qt.gitignore index 85a6baac..04b7a506 100644 --- a/Qt.gitignore +++ b/Qt.gitignore @@ -23,7 +23,7 @@ moc_*.cpp qrc_*.cpp ui_*.h Makefile* -*-build-* +*build-* # QtCreator From 5bb4e85357cb42ceff26233f67c27368d405cda0 Mon Sep 17 00:00:00 2001 From: Julien Liabeuf Date: Mon, 30 Nov 2015 11:03:09 +0700 Subject: [PATCH 072/117] Incorrect Dir Path When generating the ignore rules for Composer, an incorrect format is used. The vendor directory added is written `vendor/`, which causes other `vendors` directories to be ignored. The correct format to use is `/vendor/`, which would only ignore the root `vendor` directory. --- Composer.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Composer.gitignore b/Composer.gitignore index 3a693c92..c4222678 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 From 454f5e6cf40e3b0d9a883a19b084bff78006eaf6 Mon Sep 17 00:00:00 2001 From: Curtis Badke Date: Mon, 30 Nov 2015 08:45:18 -0700 Subject: [PATCH 073/117] Fix typo for Azure Emulator log directory --- VisualStudio.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index 49f381c4..5d0bed5d 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -156,7 +156,7 @@ csx/ *.build.csdef # Windows Azure Emulator -efc/ +ecf/ rfc/ # Windows Store app package directory From b387d8937b5709c97e80dcc5769687a1dc997628 Mon Sep 17 00:00:00 2001 From: Curtis Badke Date: Mon, 30 Nov 2015 15:59:49 -0700 Subject: [PATCH 074/117] Fix typo rfc -> rcf --- VisualStudio.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index 5d0bed5d..d0d9bf78 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -157,7 +157,7 @@ csx/ # Windows Azure Emulator ecf/ -rfc/ +rcf/ # Windows Store app package directory AppPackages/ From a393ef8de999946cbb0210c24bb8ba39ffb511c0 Mon Sep 17 00:00:00 2001 From: Andrew Stanton-Nurse Date: Tue, 1 Dec 2015 11:33:51 -0800 Subject: [PATCH 075/117] Add 'opendb' file to VisualStudio.gitignore --- VisualStudio.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index d0d9bf78..dd7327e6 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -76,6 +76,7 @@ _Chutzpah* ipch/ *.aps *.ncb +*.opendb *.opensdf *.sdf *.cachefile From ada61a7f50be34021f92f999c694c4d1abe29b74 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A1bio=20Santos?= Date: Wed, 2 Dec 2015 16:31:51 +0000 Subject: [PATCH 076/117] Update OpenCart.gitignore Ignore storage folder (contains logs, cache, etc.) --- OpenCart.gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/OpenCart.gitignore b/OpenCart.gitignore index cc937674..28e45aa6 100644 --- a/OpenCart.gitignore +++ b/OpenCart.gitignore @@ -9,3 +9,5 @@ image/data/ image/cache/ system/cache/ system/logs/ + +system/storage/ From 611c239f68c29c535a563d4e4231658378c31023 Mon Sep 17 00:00:00 2001 From: Nate Stedman Date: Fri, 4 Dec 2015 09:08:40 -0500 Subject: [PATCH 077/117] Add Swift Package Manager to Swift.gitignore Matches the style used for Carthage - build disabled by default, checkouts optionally disabled. --- Swift.gitignore | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Swift.gitignore b/Swift.gitignore index 79d9331b..89d806ec 100644 --- a/Swift.gitignore +++ b/Swift.gitignore @@ -27,6 +27,12 @@ xcuserdata *.hmap *.ipa +# 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 From 5d98cfd19e3bcbb2cda4877733cf10ab6ddcbdbf Mon Sep 17 00:00:00 2001 From: Shawn Gibbons Date: Sat, 5 Dec 2015 13:39:47 -0500 Subject: [PATCH 078/117] Updated for Joomla 3.4.5 --- Joomla.gitignore | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/Joomla.gitignore b/Joomla.gitignore index cf36d8cf..ac47eaeb 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 \ No newline at end of file From c7a4ac81812aba86bc4cd2ec2f4b22efed40e100 Mon Sep 17 00:00:00 2001 From: Shawn Gibbons Date: Sat, 5 Dec 2015 13:49:30 -0500 Subject: [PATCH 079/117] Updated for Joomla 3.4.5 --- Joomla.gitignore | 1 - 1 file changed, 1 deletion(-) diff --git a/Joomla.gitignore b/Joomla.gitignore index ac47eaeb..ffaf0739 100644 --- a/Joomla.gitignore +++ b/Joomla.gitignore @@ -408,7 +408,6 @@ /libraries/joomla/* /libraries/legacy/* /libraries/phpass/* -/libraries/phpmailer/* /libraries/phputf8/* /libraries/simplepie/* /libraries/vendor/* From 6e1ae4aa6d87fc24214761a82489db478ea40a0c Mon Sep 17 00:00:00 2001 From: Shawn Gibbons Date: Sat, 5 Dec 2015 14:01:41 -0500 Subject: [PATCH 080/117] Updated for Joomla 3.4.5 --- Joomla.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Joomla.gitignore b/Joomla.gitignore index ffaf0739..ac47eaeb 100644 --- a/Joomla.gitignore +++ b/Joomla.gitignore @@ -408,6 +408,7 @@ /libraries/joomla/* /libraries/legacy/* /libraries/phpass/* +/libraries/phpmailer/* /libraries/phputf8/* /libraries/simplepie/* /libraries/vendor/* From bf845507564bfc38943730c11da8b05bf6033d9e Mon Sep 17 00:00:00 2001 From: Stephen Date: Sun, 6 Dec 2015 11:47:00 -0800 Subject: [PATCH 081/117] Update to include iMPACT and Core Generator files --- Global/XilinxISE.gitignore | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/Global/XilinxISE.gitignore b/Global/XilinxISE.gitignore index e041f51b..4475f843 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 From 096d1d1b37997e6bc5f3dfe9a23a29c0b77a3b58 Mon Sep 17 00:00:00 2001 From: Villars Gimm Date: Tue, 8 Dec 2015 23:18:34 +0100 Subject: [PATCH 082/117] Based on a template from jmoody --- Calabash.gitignore | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 Calabash.gitignore diff --git a/Calabash.gitignore b/Calabash.gitignore new file mode 100644 index 00000000..8a75b329 --- /dev/null +++ b/Calabash.gitignore @@ -0,0 +1,10 @@ +# Calabash / Cucumber +rerun/ +reports/ +screenshots/ +screenshot*.png +test-servers/ + +# bundler +.bundle +vendor From 5e08bf6060e7d0bc9c035f11d0ee81768b317a3f Mon Sep 17 00:00:00 2001 From: tim Date: Thu, 10 Dec 2015 13:08:58 +0800 Subject: [PATCH 083/117] Unity.gitignore modyfying, add `/[Bb]uilds/ /Assets/AssetStoreTools*` dictionaries and `*.svd` svd files to be ignored modified: Unity.gitignore --- Unity.gitignore | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Unity.gitignore b/Unity.gitignore index 9de94098..a51fd65e 100644 --- a/Unity.gitignore +++ b/Unity.gitignore @@ -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,6 +16,8 @@ *.userprefs *.pidb *.booproj +*.svd + # Unity3D generated meta files *.pidb.meta From a32059c07c47e18738da84d1c715d1886e9cf532 Mon Sep 17 00:00:00 2001 From: Jelte Fennema Date: Fri, 11 Dec 2015 11:35:40 +0100 Subject: [PATCH 084/117] Tex: Ignore files generated by pdfcomment package The pdfcomment package generates *.upa and *.upb files when compiling LaTeX files. These should be ignored as well. --- TeX.gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/TeX.gitignore b/TeX.gitignore index d4427994..79459c92 100644 --- a/TeX.gitignore +++ b/TeX.gitignore @@ -120,6 +120,10 @@ _minted* *.sympy sympy-plots-for-*.tex/ +# pdfcomment +*.upa +*.upb + #pythontex *.pytxcode pythontex-files-*/ From f5784d7a10fe288a80066f60cf4a5efa280faca8 Mon Sep 17 00:00:00 2001 From: Justas Brazauskas Date: Sun, 13 Dec 2015 16:07:46 +0200 Subject: [PATCH 085/117] Fix few typos --- Global/EiffelStudio.gitignore | 2 +- Rails.gitignore | 4 ++-- Ruby.gitignore | 2 +- Typo3.gitignore | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Global/EiffelStudio.gitignore b/Global/EiffelStudio.gitignore index a7ba35f8..f41b4f70 100644 --- a/Global/EiffelStudio.gitignore +++ b/Global/EiffelStudio.gitignore @@ -1,2 +1,2 @@ -# The compilation directoy +# The compilation directory EIFGENs diff --git a/Rails.gitignore b/Rails.gitignore index f786a90a..55fcde6c 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: diff --git a/Ruby.gitignore b/Ruby.gitignore index 1ba91c05..a8b1cda2 100644 --- a/Ruby.gitignore +++ b/Ruby.gitignore @@ -21,7 +21,7 @@ build/ /doc/ /rdoc/ -## Environment normalisation: +## Environment normalization: /.bundle/ /vendor/bundle /lib/bundler/man/ diff --git a/Typo3.gitignore b/Typo3.gitignore index 5781fcc3..cb024fef 100644 --- a/Typo3.gitignore +++ b/Typo3.gitignore @@ -1,5 +1,5 @@ ## TYPO3 v6.2 -# Ignore serveral upload and file directories. +# Ignore several upload and file directories. /fileadmin/user_upload/ /fileadmin/_temp_/ /fileadmin/_processed_/ From 76b87217c836fa814e22763dc6b12b09ab86513a Mon Sep 17 00:00:00 2001 From: Richard K Date: Sun, 13 Dec 2015 13:40:01 -0200 Subject: [PATCH 086/117] Update Python.gitignore --- Python.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Python.gitignore b/Python.gitignore index 7d440988..dcc76558 100644 --- a/Python.gitignore +++ b/Python.gitignore @@ -57,3 +57,6 @@ docs/_build/ # PyBuilder target/ + +# pyenv +.python-version From 21f95b328020f705cb46ca3431c4a97d6893c25d Mon Sep 17 00:00:00 2001 From: Alexey Belyansky Date: Mon, 14 Dec 2015 21:52:44 +0300 Subject: [PATCH 087/117] Ignore BundleArtifacts folder --- VisualStudio.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index dd7327e6..249d20f9 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -162,6 +162,7 @@ rcf/ # Windows Store app package directory AppPackages/ +BundleArtifacts/ # Visual Studio cache files # files ending in .cache can be ignored From 61a76c1c08252a7af0291564dd055f2b73ca8c5e Mon Sep 17 00:00:00 2001 From: Roland Cooper Date: Thu, 17 Dec 2015 23:29:32 +0200 Subject: [PATCH 088/117] Add new line at end of file --- Joomla.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Joomla.gitignore b/Joomla.gitignore index ac47eaeb..0d7a0de2 100644 --- a/Joomla.gitignore +++ b/Joomla.gitignore @@ -543,4 +543,4 @@ /index.php /joomla.xml /*.txt -/robots.txt.dist \ No newline at end of file +/robots.txt.dist From fe3b2f4d97a4673f1f47ccea3c5e674d7be6d395 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Haberth=C3=BCr?= Date: Mon, 21 Dec 2015 13:55:17 +0100 Subject: [PATCH 089/117] Ignore auxiliary files from \usepackage{cprotect} [cprotect](https://www.ctan.org/tex-archive/macros/latex/contrib/cprotect?lang=en) tracks its contents in an auxiliary file, this is safe to ignore. --- TeX.gitignore | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/TeX.gitignore b/TeX.gitignore index 79459c92..b04dbd0e 100644 --- a/TeX.gitignore +++ b/TeX.gitignore @@ -32,8 +32,6 @@ *.pdfsync ## Auxiliary and intermediate files from other packages: - - # algorithms *.alg *.loa @@ -49,6 +47,9 @@ acs-*.bib *.snm *.vrb +# cprotect +*.cpt + #(e)ledmac/(e)ledpar *.end *.[1-9] From 6d1612cff43252b389a9e2e69f57c300a4993e82 Mon Sep 17 00:00:00 2001 From: Andrew Arnott Date: Sun, 27 Dec 2015 07:29:24 -0800 Subject: [PATCH 090/117] Ignore files generated by NuGet v3 project.json --- VisualStudio.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index 249d20f9..b68002de 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -151,6 +151,9 @@ 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 csx/ From 346fb93318b0714e0413fbf0dc9d4b176ec5b3a7 Mon Sep 17 00:00:00 2001 From: Andrew Arnott Date: Sun, 27 Dec 2015 07:51:37 -0800 Subject: [PATCH 091/117] Stop ignoring StyleCop.json StyleCop.Analyzers is the modern re-invention of StyleCop, and uses a StyleCop.json file that the default .gitignore file made very difficult to check in, and easy to think was checked in but isn't. See https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/32057fff82adf7cfb92aa50aef69a6b030eedf31/documentation/Configuration.md#source-control for the documented case. Looking through history, this line was last touched to make it case insensitive, and before that the line was in the original VisualStudio.gitignore file, without justification for why it should ignore all file extensions. From my experience with stylecop, the only file I remember it creating was stylecop.cache. I would change `[Ss]tyle[Cc]op.*` to `[Ss]tyle[Cc]op.cache` but there is already a line for suppressing all *.cache files (which wasn't there when the stylecop line was originally added). So I believe this line is now obsolete, and as I explain above, actually problematic. --- VisualStudio.gitignore | 1 - 1 file changed, 1 deletion(-) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index 249d20f9..314c9211 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -172,7 +172,6 @@ BundleArtifacts/ # Others ClientBin/ -[Ss]tyle[Cc]op.* ~$* *~ *.dbmdl From 849fa552f2171df8503d2b4e93c80c18493469dc Mon Sep 17 00:00:00 2001 From: Andrew Arnott Date: Sun, 27 Dec 2015 07:57:50 -0800 Subject: [PATCH 092/117] Remove `build/` suppression The authoring of NuGet packages quite often include `build` folders, and when this is .gitignore'd it's very often the source of bugs in files that don't get checked in. I've never seen a Visual Studio project that builds to a `build` folder (`bin` is the default name). As this is a Visual Studio template file, and we have real projects that include `build` folders that include source code, I recommend we remove suppression of this folder. --- VisualStudio.gitignore | 1 - 1 file changed, 1 deletion(-) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index 249d20f9..30b6cdb0 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -17,7 +17,6 @@ [Rr]eleases/ x64/ x86/ -build/ bld/ [Bb]in/ [Oo]bj/ From a25589c92187674f68dcfafe8433e0c1e6069159 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Anders=20Lundsg=C3=A5rd?= Date: Mon, 28 Dec 2015 20:09:39 +0100 Subject: [PATCH 093/117] Ignore Azure ApplicationInsights.config Ignore Azure ApplicationInsights.config in VisualStudio.gitignore --- VisualStudio.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index 314c9211..d2297f0b 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -160,6 +160,9 @@ csx/ ecf/ rcf/ +# Windows Azure ApplicationInsights config file +ApplicationInsights.config + # Windows Store app package directory AppPackages/ BundleArtifacts/ From 65ba08ced79926c4993e444702833153d4bfaab8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Anders=20Lundsg=C3=A5rd?= Date: Mon, 28 Dec 2015 20:11:44 +0100 Subject: [PATCH 094/117] Name update of Windows Azure Windows Azure -> Microsoft Azure. Due to https://azure.microsoft.com/sv-se/blog/upcoming-name-change-for-windows-azure/ --- VisualStudio.gitignore | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index d2297f0b..5362f99b 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -152,15 +152,15 @@ publish/ # Uncomment if necessary however generally it will be regenerated when needed #!**/packages/repositories.config -# Windows Azure Build Output +# Microsoft Azure Build Output csx/ *.build.csdef -# Windows Azure Emulator +# Microsoft Azure Emulator ecf/ rcf/ -# Windows Azure ApplicationInsights config file +# Microsoft Azure ApplicationInsights config file ApplicationInsights.config # Windows Store app package directory From 5fa2ff234591ddae5a79d183a67492d67773ff86 Mon Sep 17 00:00:00 2001 From: Dmitry Rosolko Date: Thu, 31 Dec 2015 12:40:20 +0300 Subject: [PATCH 095/117] Update Eclipse.gitignore Remove .gradle because it is not eclipse specific and already added in Gradle.gitignore. --- Global/Eclipse.gitignore | 1 - 1 file changed, 1 deletion(-) diff --git a/Global/Eclipse.gitignore b/Global/Eclipse.gitignore index 880dd928..fcafca5d 100644 --- a/Global/Eclipse.gitignore +++ b/Global/Eclipse.gitignore @@ -1,6 +1,5 @@ *.pydevproject .metadata -.gradle bin/ tmp/ *.tmp From 3e9a2d98e256b87102e73011c16b13c721bc57fe Mon Sep 17 00:00:00 2001 From: dopefishh Date: Sun, 3 Jan 2016 13:28:45 +0100 Subject: [PATCH 096/117] Add TeX precompiled preamble and xypic A precompiled header(`latex -ini`) compiled creates a `.fmt` file. To speed up xypic's drawing, precompiled matrices are created with the `\CompileMatrices` entry in the preamble. This creates `*.xyc` files. --- TeX.gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/TeX.gitignore b/TeX.gitignore index b04dbd0e..06f59b3f 100644 --- a/TeX.gitignore +++ b/TeX.gitignore @@ -6,6 +6,7 @@ *.fls *.out *.toc +*.fmt ## Intermediate documents: *.dvi @@ -143,6 +144,9 @@ pythontex-files-*/ # xindy *.xdy +# xypic precompiled matrices +*.xyc + # WinEdt *.bak *.sav From 679c67738234abd77567df5c07257bfab314f106 Mon Sep 17 00:00:00 2001 From: Adriano Ferreira Date: Sun, 3 Jan 2016 11:56:41 -0500 Subject: [PATCH 097/117] Ignore timeline.xctimeline playground file --- Swift.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Swift.gitignore b/Swift.gitignore index 89d806ec..c705373d 100644 --- a/Swift.gitignore +++ b/Swift.gitignore @@ -27,6 +27,9 @@ xcuserdata *.hmap *.ipa +## Playgrounds +timeline.xctimeline + # Swift Package Manager # # Add this line if you want to avoid checking in source code from Swift Package Manager dependencies. From 33da976da9a6ff4394797ef807651a79114c0065 Mon Sep 17 00:00:00 2001 From: Adriano Ferreira Date: Sun, 3 Jan 2016 12:02:46 -0500 Subject: [PATCH 098/117] Ignore playground.xcworkspace playground file --- Swift.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Swift.gitignore b/Swift.gitignore index c705373d..5e5d5ceb 100644 --- a/Swift.gitignore +++ b/Swift.gitignore @@ -29,6 +29,7 @@ xcuserdata ## Playgrounds timeline.xctimeline +playground.xcworkspace # Swift Package Manager # From efab0fd13c8bcd0dc1bb43063b5647a98496b044 Mon Sep 17 00:00:00 2001 From: James Elford Date: Sun, 10 Jan 2016 09:01:17 +0000 Subject: [PATCH 099/117] Include lib64 for virtualenv On systems that require a lib64, virtualenv creates a symlink to the local lib. --- Global/VirtualEnv.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Global/VirtualEnv.gitignore b/Global/VirtualEnv.gitignore index 831cf3af..3259f81e 100644 --- a/Global/VirtualEnv.gitignore +++ b/Global/VirtualEnv.gitignore @@ -4,6 +4,7 @@ [Bb]in [Ii]nclude [Ll]ib +[Ll]ib64 [Ll]ocal [Ss]cripts pyvenv.cfg From ce4e9ccd7a714da6b0e1ea313acdaf832a533750 Mon Sep 17 00:00:00 2001 From: Rogier Slag Date: Sun, 10 Jan 2016 15:59:25 +0100 Subject: [PATCH 100/117] Exclude Latexian temp files for Tex documents Latexian adds some additional temporary files, which are not required for building the project. Therefore they are better left out as well --- TeX.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/TeX.gitignore b/TeX.gitignore index 06f59b3f..fb533ccc 100644 --- a/TeX.gitignore +++ b/TeX.gitignore @@ -154,3 +154,6 @@ pythontex-files-*/ # endfloat *.ttt *.fff + +# Latexian +TSWLatexianTemp* From 491eca8bda234da47c8dcf32770ba8067e233822 Mon Sep 17 00:00:00 2001 From: mimibar Date: Wed, 13 Jan 2016 13:00:10 -0600 Subject: [PATCH 101/117] Comments Just added some comments. Some of us don't need some of the lines in the file. --- Global/Eclipse.gitignore | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/Global/Eclipse.gitignore b/Global/Eclipse.gitignore index fcafca5d..6229f7cf 100644 --- a/Global/Eclipse.gitignore +++ b/Global/Eclipse.gitignore @@ -1,4 +1,4 @@ -*.pydevproject + .metadata bin/ tmp/ @@ -19,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) @@ -28,7 +31,7 @@ local.properties # Java annotation processor (APT) .factorypath -# PDT-specific +# PDT-specific (PHP Development Tools) .buildpath # sbteclipse plugin From 2cf1699227078831970231a8854b853f2ff0079c Mon Sep 17 00:00:00 2001 From: Prayag Verma Date: Sat, 16 Jan 2016 17:56:31 +0530 Subject: [PATCH 102/117] Update license year to 2016 --- LICENSE | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LICENSE b/LICENSE index 4c9a2ab0..b8a103ac 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -Copyright (c) 2015 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"), From cedf149de3ecaee2492a8122a6d872f0b1e5fa19 Mon Sep 17 00:00:00 2001 From: Levin Rickert Date: Sun, 17 Jan 2016 17:43:54 +0100 Subject: [PATCH 103/117] URL doesn't exists anymore --- Node.gitignore | 1 - 1 file changed, 1 deletion(-) diff --git a/Node.gitignore b/Node.gitignore index 4796eb8d..e920c167 100644 --- a/Node.gitignore +++ b/Node.gitignore @@ -24,7 +24,6 @@ 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 From 9771968355d9ff605ed75054996f4bf1bf9c62d4 Mon Sep 17 00:00:00 2001 From: Christopher Warrington Date: Fri, 22 Jan 2016 14:57:28 -0800 Subject: [PATCH 104/117] Ignore default Emacs server auth dir The server-auth-dir is where Emacs stores authentication files for Emacs servers (running over TCP). These are (usually) ephemeral in nature, and should be ignored. --- Global/Emacs.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Global/Emacs.gitignore b/Global/Emacs.gitignore index e5327bad..95e09eba 100644 --- a/Global/Emacs.gitignore +++ b/Global/Emacs.gitignore @@ -30,3 +30,6 @@ tramp # cask packages .cask/ + +# server auth directory +/server/ From 514f24b99a1a0c724dca4583b8bc890342dd4191 Mon Sep 17 00:00:00 2001 From: Vahagn Harutyunyan Date: Sat, 23 Jan 2016 14:44:18 +0400 Subject: [PATCH 105/117] Add *.VC.opendb for UnrealEngine Add *.VC.opendb to the .gitignore for the UnrealEngine for Visual Studio 2015 Update 1 users. This reflects the changes in the VisualStudio.gitignore made in https://github.com/github/gitignore/pull/1778 and https://github.com/github/gitignore/pull/1783 but is more specifically targeted at solving the issue http://stackoverflow.com/questions/34319008/git-issue-with-visual-studio-2015-update-1 . --- UnrealEngine.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/UnrealEngine.gitignore b/UnrealEngine.gitignore index 247f644a..94e990aa 100644 --- a/UnrealEngine.gitignore +++ b/UnrealEngine.gitignore @@ -34,6 +34,7 @@ *.suo *.opensdf *.sdf +*.VC.opendb # Precompiled Assets SourceArt/**/*.png From 9c92fa360fcd3c823b96476ad5c2d0c96e48cd69 Mon Sep 17 00:00:00 2001 From: pisaacs Date: Sat, 23 Jan 2016 12:56:49 -0500 Subject: [PATCH 106/117] Add .byebug_history to gitignore .byebug_history included in default Rails5 setup (https://github.com/rails/rails/blob/master/railties/lib/rails/generators/rails/app/templates/gitignore) --- Rails.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Rails.gitignore b/Rails.gitignore index 55fcde6c..2121e0a8 100644 --- a/Rails.gitignore +++ b/Rails.gitignore @@ -33,3 +33,6 @@ bower.json # Ignore pow environment settings .powenv + +# Ignore Byebug command history file. +.byebug_history From 2c3b06b1ecc04ed9298d843592de1de6717a1191 Mon Sep 17 00:00:00 2001 From: Victor Arribas Date: Mon, 25 Jan 2016 18:50:35 +0100 Subject: [PATCH 107/117] Qt: ignore CMakeLists.txt.user --- Qt.gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Qt.gitignore b/Qt.gitignore index 04b7a506..4a524e3a 100644 --- a/Qt.gitignore +++ b/Qt.gitignore @@ -32,3 +32,7 @@ Makefile* #QtCtreator Qml *.qmlproject.user *.qmlproject.user.* + +#QtCtreator CMake +CMakeLists.txt.user + From edb522ba0b1897434764968ce7698ba39119dd2a Mon Sep 17 00:00:00 2001 From: Ray Fang Date: Wed, 27 Jan 2016 14:41:47 +0800 Subject: [PATCH 108/117] Update reference article link --- Global/JetBrains.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Global/JetBrains.gitignore b/Global/JetBrains.gitignore index 2947063e..e845b237 100644 --- a/Global/JetBrains.gitignore +++ b/Global/JetBrains.gitignore @@ -1,5 +1,5 @@ # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm -# Reference https://intellij-support.jetbrains.com/entries/23393067 +# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839 # User-specific stuff: .idea/workspace.xml From 8ec50f4b7448d90578e28f34632070da7b7935cf Mon Sep 17 00:00:00 2001 From: Villars Gimm Date: Wed, 27 Jan 2016 12:24:30 +0100 Subject: [PATCH 109/117] Move Calabash to Global --- Calabash.gitignore => Global/Calabash.gitignore | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename Calabash.gitignore => Global/Calabash.gitignore (100%) diff --git a/Calabash.gitignore b/Global/Calabash.gitignore similarity index 100% rename from Calabash.gitignore rename to Global/Calabash.gitignore From 71e0c804e6698818a661af9e1e03845a95ad3dbe Mon Sep 17 00:00:00 2001 From: Julien Carsique Date: Thu, 16 Jul 2015 14:19:00 +0200 Subject: [PATCH 110/117] Add Code Recommenders directory Code Recommenders introduced in Eclipse Luna (4.5) creates a .recommenders directory at the root of the workspace, like .metadata --- Global/Eclipse.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Global/Eclipse.gitignore b/Global/Eclipse.gitignore index 29a336c2..53236b63 100644 --- a/Global/Eclipse.gitignore +++ b/Global/Eclipse.gitignore @@ -45,3 +45,6 @@ local.properties # STS (Spring Tool Suite) .springBeans + +# Code Recommenders +.recommenders/ From 03e1898c933f3283d7fa7e6b5fdcd1a6c08eda76 Mon Sep 17 00:00:00 2001 From: Jesper Utoft Date: Wed, 3 Feb 2016 11:42:49 +0100 Subject: [PATCH 111/117] Add ignore for .lox files from fixme package --- TeX.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/TeX.gitignore b/TeX.gitignore index 8c9d916f..1b3dec1c 100644 --- a/TeX.gitignore +++ b/TeX.gitignore @@ -51,6 +51,9 @@ acs-*.bib # cprotect *.cpt +# fixme +*.lox + #(r)(e)ledmac/(r)(e)ledpar *.end *.?end From 31c960a5ca3d26f3c449bac0b90de482c3650b51 Mon Sep 17 00:00:00 2001 From: icylogic Date: Wed, 3 Feb 2016 21:51:15 +0800 Subject: [PATCH 112/117] update Eagle.gitignore for .lck --- Eagle.gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Eagle.gitignore b/Eagle.gitignore index b12e5bfe..9ced1260 100644 --- a/Eagle.gitignore +++ b/Eagle.gitignore @@ -38,3 +38,7 @@ eagle.epf *.info *.eps + +# file locks introduced since 7.x +*.lck + From 98a3ab7719edd27d4c86af3daa1fdf883bb2e114 Mon Sep 17 00:00:00 2001 From: Andrew Pennebaker Date: Sat, 6 Feb 2016 02:51:00 -0600 Subject: [PATCH 113/117] matlab: ignore octave session info --- Global/Matlab.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Global/Matlab.gitignore b/Global/Matlab.gitignore index 79bc56cd..32a5ad4c 100644 --- a/Global/Matlab.gitignore +++ b/Global/Matlab.gitignore @@ -14,3 +14,6 @@ # Simulink Code Generation slprj/ + +# Session info +octave-workspace From 31045e29f8d6d8103262a096e145b6085f4336ea Mon Sep 17 00:00:00 2001 From: Noah Lovelady-Allen Date: Sun, 7 Feb 2016 08:57:08 -0500 Subject: [PATCH 114/117] Remove redundancy in Global/Vim.gitignore Anything matched by `*.un~` will also be matched by the last rule, `*~`. --- Global/Vim.gitignore | 2 -- 1 file changed, 2 deletions(-) diff --git a/Global/Vim.gitignore b/Global/Vim.gitignore index 325bd576..1099aaab 100644 --- a/Global/Vim.gitignore +++ b/Global/Vim.gitignore @@ -1,8 +1,6 @@ # swap [._]*.s[a-w][a-z] [._]s[a-w][a-z] -# persistent undo -*.un~ # session Session.vim # temporary From bcbbc6eae2d5ba533364aa697f42441c3c34db55 Mon Sep 17 00:00:00 2001 From: "Austin J. Alexander" Date: Sun, 7 Feb 2016 13:08:03 -0500 Subject: [PATCH 115/117] fix style by adding space after # --- Python.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Python.gitignore b/Python.gitignore index 3762b399..51275802 100644 --- a/Python.gitignore +++ b/Python.gitignore @@ -59,7 +59,7 @@ docs/_build/ # PyBuilder target/ -#Ipython Notebook +# Ipython Notebook .ipynb_checkpoints # pyenv From cd222dfc626e1ba97a00f1c9a83a9e8e29fd66ba Mon Sep 17 00:00:00 2001 From: Roberto Novelo Date: Wed, 10 Feb 2016 12:45:16 -0600 Subject: [PATCH 116/117] Added Library Mappings and VCS Root These files differ on Windows and OS X. --- Global/JetBrains.gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Global/JetBrains.gitignore b/Global/JetBrains.gitignore index e845b237..b9ed92cb 100644 --- a/Global/JetBrains.gitignore +++ b/Global/JetBrains.gitignore @@ -5,6 +5,8 @@ .idea/workspace.xml .idea/tasks.xml .idea/dictionaries +.idea/vcs.xml +.idea/jsLibraryMappings.xml # Sensitive or high-churn files: .idea/dataSources.ids From cf46e139ad908f632c19c92be1612b970aeb8235 Mon Sep 17 00:00:00 2001 From: Andrew Pennebaker Date: Thu, 11 Feb 2016 14:21:19 -0600 Subject: [PATCH 117/117] work around intellij gradle wrapper refreshing bug --- Gradle.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Gradle.gitignore b/Gradle.gitignore index 2200361b..77617a15 100644 --- a/Gradle.gitignore +++ b/Gradle.gitignore @@ -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