From 18bdb8848434d872279292c7e90e99fe192169bb Mon Sep 17 00:00:00 2001 From: Josh Kodroff Date: Wed, 4 Apr 2018 13:59:50 -0400 Subject: [PATCH 01/14] Remove tfvars files from Terraform.gitignore MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit `tfvars` files should not be gitignore-d as they are used to parameterize a Terraform root for multiple environments, e.g.: ```bash $ tree terraform/roots/vpc terraform/roots/vpc ├── env │   ├── production.tfvars │   ├── qa.tfvars │   └── staging.tfvars └── main.tf ``` There may be a use case where a particular `tfvars` file should be ignored, but there's no naming convention I'm aware of to easily designate such a file. --- Terraform.gitignore | 3 --- 1 file changed, 3 deletions(-) diff --git a/Terraform.gitignore b/Terraform.gitignore index 1fef4ab9..428217ad 100644 --- a/Terraform.gitignore +++ b/Terraform.gitignore @@ -4,6 +4,3 @@ # .tfstate files *.tfstate *.tfstate.* - -# .tfvars files -*.tfvars From 24d50f85db5d1818d7f24c5278fee1d124dc1a8e Mon Sep 17 00:00:00 2001 From: Aniruddha Shastri Date: Wed, 9 May 2018 13:28:57 -0500 Subject: [PATCH 02/14] Ignore the .cache folder for LabVIEW projects Ignore the .cache folder for LabVIEW projects. This is a local folder with metadata used by LabVIEW NXG. --- LabVIEW.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/LabVIEW.gitignore b/LabVIEW.gitignore index 12245086..31619f59 100644 --- a/LabVIEW.gitignore +++ b/LabVIEW.gitignore @@ -14,3 +14,4 @@ # Metadata *.aliases *.lvlps +.cache/ From 7054f5d9b4be299a75bcc5dbb2135defe3327116 Mon Sep 17 00:00:00 2001 From: Kenji Ohtsuka Date: Thu, 10 May 2018 23:10:36 +0900 Subject: [PATCH 03/14] Update JetBrains.gitignore ignore dbnavigator.xml because it contains sensitive data, such as host, port, db, user name, and so on. --- Global/JetBrains.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Global/JetBrains.gitignore b/Global/JetBrains.gitignore index b09cb3db..4d5117a1 100644 --- a/Global/JetBrains.gitignore +++ b/Global/JetBrains.gitignore @@ -14,6 +14,7 @@ .idea/**/sqlDataSources.xml .idea/**/dynamic.xml .idea/**/uiDesigner.xml +.idea/**/dbnavigator.xml # Gradle .idea/**/gradle.xml From 47fd5882966933641d422da97bbcae13c4933201 Mon Sep 17 00:00:00 2001 From: Yin Li Date: Mon, 2 Apr 2018 20:59:16 -0700 Subject: [PATCH 04/14] Add latexrun default directory for auxiliary files --- TeX.gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/TeX.gitignore b/TeX.gitignore index e6598ba1..3d12d3f9 100644 --- a/TeX.gitignore +++ b/TeX.gitignore @@ -40,6 +40,10 @@ *.synctex.gz(busy) *.pdfsync +## Build tool directories for auxiliary files +# latexrun +latex.out/ + ## Auxiliary and intermediate files from other packages: # algorithms *.alg From da1a8284717a93b6cdeeb35a0ac5831ff7c2071e Mon Sep 17 00:00:00 2001 From: Josh Kodroff Date: Sun, 13 May 2018 17:55:40 -0400 Subject: [PATCH 05/14] Update Terraform.gitignore --- Terraform.gitignore | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Terraform.gitignore b/Terraform.gitignore index 428217ad..29c51746 100644 --- a/Terraform.gitignore +++ b/Terraform.gitignore @@ -4,3 +4,9 @@ # .tfstate files *.tfstate *.tfstate.* + +# Ignore any .tfvars files that are generated automatically for each Terraform run. Most +# .tfvars files are managed as part of configuration and so should be included in +# version control. +# +# example.tfvars From c26008c00dac481a1f780751d6d005d52fd15b83 Mon Sep 17 00:00:00 2001 From: Giovanni Bassi Date: Sat, 19 May 2018 20:56:25 -0300 Subject: [PATCH 06/14] Do not ignore launchsettings.json for VS Ignoring `launchSettings.json` does not make much sense. Now .NET CLI even considers this file when running with `dotnet run`, as you can read [here](https://docs.microsoft.com/en-us/dotnet/core/tools/dotnet-run?tabs=netcore2x). This settings will be useful if shared among project members, so it should be commited to the repo. Also, on the default `.gitignore` file generated by Visual Studio it is not ignored, so this causes confusion, as depending on how `.gitignore` was created it could be commited in or not. --- VisualStudio.gitignore | 1 - 1 file changed, 1 deletion(-) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index 3e759b75..1e9abf78 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -52,7 +52,6 @@ BenchmarkDotNet.Artifacts/ project.lock.json project.fragment.lock.json artifacts/ -**/Properties/launchSettings.json # StyleCop StyleCopReport.xml From 560f235f1fc0468b2804d9035f0188149acc4252 Mon Sep 17 00:00:00 2001 From: Darryl Abbate Date: Thu, 24 May 2018 00:12:37 -0500 Subject: [PATCH 07/14] Add all sourcemap file formats --- Sass.gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Sass.gitignore b/Sass.gitignore index 486b32ce..159f5151 100644 --- a/Sass.gitignore +++ b/Sass.gitignore @@ -1,2 +1,4 @@ .sass-cache/ *.css.map +*.sass.map +*.scss.map From e2824c0903563ca9264b67d7bd7a693a6d3a1dd8 Mon Sep 17 00:00:00 2001 From: segayuu Date: Fri, 25 May 2018 13:11:51 +0900 Subject: [PATCH 08/14] Add Vuepress build defalult output Directory --- Node.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Node.gitignore b/Node.gitignore index ad46b308..47ed2ccb 100644 --- a/Node.gitignore +++ b/Node.gitignore @@ -59,3 +59,6 @@ typings/ # next.js build output .next + +# vuepress build output +.vuepress/dist From a58f1ab0cdb672cda0b3303413dbca962705a629 Mon Sep 17 00:00:00 2001 From: Tobi Fuhrimann Date: Fri, 25 May 2018 11:53:33 +0200 Subject: [PATCH 09/14] Ignore Terraform crash log files --- Terraform.gitignore | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Terraform.gitignore b/Terraform.gitignore index 29c51746..d9397e2d 100644 --- a/Terraform.gitignore +++ b/Terraform.gitignore @@ -1,10 +1,13 @@ -# Local .terraform directories +# Local .terraform directories **/.terraform/* # .tfstate files *.tfstate *.tfstate.* +# Crash log files +crash.log + # Ignore any .tfvars files that are generated automatically for each Terraform run. Most # .tfvars files are managed as part of configuration and so should be included in # version control. From 7df710b0dd48ae1d2d5e6c47376de06190edad93 Mon Sep 17 00:00:00 2001 From: BC Ko Date: Sun, 27 May 2018 14:04:07 -0700 Subject: [PATCH 10/14] Update Dart.gitignore updated according to https://www.dartlang.org/guides/libraries/private-files --- Dart.gitignore | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/Dart.gitignore b/Dart.gitignore index 7bf00e82..bd7e39fa 100644 --- a/Dart.gitignore +++ b/Dart.gitignore @@ -3,7 +3,6 @@ # Files and directories created by pub .dart_tool/ .packages -.pub/ build/ # If you're building an application, you may want to check-in your pubspec.lock pubspec.lock @@ -11,3 +10,20 @@ pubspec.lock # Directory created by dartdoc # If you don't generate documentation locally you can remove this line. doc/api/ + +# Avoid committing generated Javascript files: +*.dart.js +*.info.json # Produced by the --dump-info flag. +*.js # When generated by dart2js. Don't specify *.js if your + # project includes source files written in JavaScript. +*.js_ +*.js.deps +*.js.map + + +# files and directories created by development environments +*.iml // IntelliJ +*.ipr // IntelliJ +*.iws // IntelliJ +.idea/ // IntelliJ +.DS_Store // Mac From 88e67f9931151db8f2cc102e3db2903d97ef873e Mon Sep 17 00:00:00 2001 From: Tejas Shah Date: Sun, 27 May 2018 16:58:49 -0700 Subject: [PATCH 11/14] Add .serverless to gitignore --- Node.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Node.gitignore b/Node.gitignore index 47ed2ccb..4454ba1b 100644 --- a/Node.gitignore +++ b/Node.gitignore @@ -62,3 +62,6 @@ typings/ # vuepress build output .vuepress/dist + +# Serverless directories +.serverless From e144ca670f192306f1aba04bcff1f02574c99628 Mon Sep 17 00:00:00 2001 From: BC Ko Date: Sun, 27 May 2018 17:22:53 -0700 Subject: [PATCH 12/14] remove Jetbrain and MacOS related values --- Dart.gitignore | 8 -------- 1 file changed, 8 deletions(-) diff --git a/Dart.gitignore b/Dart.gitignore index bd7e39fa..dbef116d 100644 --- a/Dart.gitignore +++ b/Dart.gitignore @@ -19,11 +19,3 @@ doc/api/ *.js_ *.js.deps *.js.map - - -# files and directories created by development environments -*.iml // IntelliJ -*.ipr // IntelliJ -*.iws // IntelliJ -.idea/ // IntelliJ -.DS_Store // Mac From a47c27d3517b7faa04e5332a37c869b2c857127b Mon Sep 17 00:00:00 2001 From: John Vandenberg Date: Tue, 5 Jun 2018 11:09:20 +0700 Subject: [PATCH 13/14] Trim trailing whitespace --- .github/PULL_REQUEST_TEMPLATE.md | 4 ++-- CONTRIBUTING.md | 6 +++--- Delphi.gitignore | 2 +- Global/Eclipse.gitignore | 2 +- Global/Matlab.gitignore | 12 ++++++------ Global/SynopsysVCS.gitignore | 8 ++++---- Umbraco.gitignore | 2 +- VisualStudio.gitignore | 6 +++--- 8 files changed, 21 insertions(+), 21 deletions(-) diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 058f0144..247a5b56 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -2,10 +2,10 @@ _TODO_ -**Links to documentation supporting these rule changes:** +**Links to documentation supporting these rule changes:** _TODO_ -If this is a new template: +If this is a new template: - **Link to application or project’s homepage**: _TODO_ diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 1b94f6cb..c6938381 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -6,17 +6,17 @@ high quality, we request that contributions adhere to the following guidelines. - **Provide a link to the application or project’s homepage**. Unless it’s extremely popular, there’s a chance the maintainers don’t know about or use the language, framework, editor, app, or project your change applies to. - + - **Provide links to documentation** supporting the change you’re making. Current, canonical documentation mentioning the files being ignored is best. If documentation isn’t available to support your change, do the best you can to explain what the files being ignored are for. - + - **Explain why you’re making a change**. Even if it seems self-evident, please take a sentence or two to tell us why your change or addition should happen. It’s especially helpful to articulate why this change applies to *everyone* who works with the applicable technology, rather than just you or your team. - + - **Please consider the scope of your change**. If your change specific to a certain language or framework, then make sure the change is made to the template for that language or framework, rather than to the template for an diff --git a/Delphi.gitignore b/Delphi.gitignore index 19864c6b..000ee5f1 100644 --- a/Delphi.gitignore +++ b/Delphi.gitignore @@ -20,7 +20,7 @@ # 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 diff --git a/Global/Eclipse.gitignore b/Global/Eclipse.gitignore index 0eb8a5e8..9eb67c9f 100644 --- a/Global/Eclipse.gitignore +++ b/Global/Eclipse.gitignore @@ -23,7 +23,7 @@ local.properties # CDT-specific (C/C++ Development Tooling) .cproject -# CDT- autotools +# CDT- autotools .autotools # Java annotation processor (APT) diff --git a/Global/Matlab.gitignore b/Global/Matlab.gitignore index d87a6bdb..bdcfdc51 100644 --- a/Global/Matlab.gitignore +++ b/Global/Matlab.gitignore @@ -7,12 +7,12 @@ # Compiled MEX binaries (all platforms) *.mex* -# Packaged app and toolbox files -*.mlappinstall -*.mltbx - -# Generated helpsearch folders -helpsearch*/ +# Packaged app and toolbox files +*.mlappinstall +*.mltbx + +# Generated helpsearch folders +helpsearch*/ # Simulink code generation folders slprj/ diff --git a/Global/SynopsysVCS.gitignore b/Global/SynopsysVCS.gitignore index eed2432f..ad751f6b 100644 --- a/Global/SynopsysVCS.gitignore +++ b/Global/SynopsysVCS.gitignore @@ -4,8 +4,8 @@ *.evcd *.fsdb -# Default name of the simulation executable. A different name can be -# specified with this switch (the associated daidir database name is +# Default name of the simulation executable. A different name can be +# specified with this switch (the associated daidir database name is # also taken from here): -o / simv @@ -13,7 +13,7 @@ simv simv.daidir/ simv.db.dir/ -# Infrastructure necessary to co-simulate SystemC models with +# Infrastructure necessary to co-simulate SystemC models with # Verilog/VHDL models. An alternate directory may be specified with this # switch: -Mdir= csrc/ @@ -22,7 +22,7 @@ csrc/ # used to write all messages from simulation: -l *.log -# Coverage results (generated with urg) and database location. The +# Coverage results (generated with urg) and database location. The # following switch can also be used: urg -dir .vdb simv.vdb/ urgReport/ diff --git a/Umbraco.gitignore b/Umbraco.gitignore index 10fc2b4d..cd90af30 100644 --- a/Umbraco.gitignore +++ b/Umbraco.gitignore @@ -19,7 +19,7 @@ !**/App_Data/[Pp]ackages/* !**/[Uu]mbraco/[Dd]eveloper/[Pp]ackages/* -# ImageProcessor DiskCache +# ImageProcessor DiskCache **/App_Data/cache/ # Ignore the Models Builder models out of date flag diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index 1e9abf78..f431ddc7 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -220,7 +220,7 @@ ClientBin/ *.publishsettings orleans.codegen.cs -# Including strong name files can present a security risk +# Including strong name files can present a security risk # (https://github.com/github/gitignore/pull/2483#issue-259490424) #*.snk @@ -316,7 +316,7 @@ __pycache__/ # OpenCover UI analysis results OpenCover/ -# Azure Stream Analytics local run output +# Azure Stream Analytics local run output ASALocalRun/ # MSBuild Binary and Structured Log @@ -325,5 +325,5 @@ ASALocalRun/ # NVidia Nsight GPU debugger configuration file *.nvuser -# MFractors (Xamarin productivity tool) working folder +# MFractors (Xamarin productivity tool) working folder .mfractor/ From 0ec6fda4f5f6ac439a0551a3ee7fd657fe99dc3b Mon Sep 17 00:00:00 2001 From: Shawn Kovalchick Date: Mon, 11 Jun 2018 17:33:00 -0400 Subject: [PATCH 14/14] Ignore usage statistics file .idea/misc.xml used to contain usage statistics. This was broken out to usage.statistics.xml in the latest EAP (2018.2 EAP). It should be excluded from git. See https://youtrack.jetbrains.com/issue/IDEA-192913 --- Global/JetBrains.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Global/JetBrains.gitignore b/Global/JetBrains.gitignore index 4d5117a1..e2c9c9e2 100644 --- a/Global/JetBrains.gitignore +++ b/Global/JetBrains.gitignore @@ -4,6 +4,7 @@ # User-specific stuff .idea/**/workspace.xml .idea/**/tasks.xml +.idea/**/usage.statistics.xml .idea/**/dictionaries .idea/**/shelf