Robert C. Maehl [Wed, 4 Aug 2021 18:38:20 +0000 (14:38 -0400)]
Create AutoIt.gitignore
This is a gitignore template for the AutoIt v3 Language. This tool automatically excludes files created by some of it's tools such as automated backups.
Add `.idea/jarRepositories.xml` to Android.gitignore
The file `.idea/jarRepositories.xml` should be added to .gitignore.
It is auto-generated and has only redundant information about remote jar repositories.
* https://www.jetbrains.com/help/idea/library.html#configure-custom-remote-repo
Jason Gross [Tue, 13 Apr 2021 14:39:58 +0000 (10:39 -0400)]
Update Coq.gitignore
Coq now uses .mlg rather than .ml4 (since https://github.com/coq/coq/pull/8763), so we have to ignore its generated dependency files. The `native_compute_profile_*.data` files are generated by `Set NativeCompute Profiling` (see https://github.com/coq/coq/pull/950). Finally `.coq-native` is a directory that may be generated in any subdirectory, not only at top level, so we should not use absolute paths for it.
Diego Herranz [Sun, 12 Jul 2020 15:07:13 +0000 (16:07 +0100)]
KiCad: add *.kicad_sch-bak and *.kicad_prl (#3427)
* KiCad: add *.kicad_sch-bak
As used by the new file formats for KiCad 6.0
See https://kicad-pcb.org/blog/2020/05/Development-Highlight-New-schematic-and-symbol-library-file-formats-are-now-the-default/
* Add *.kicad_prl to KiCad.gitignore
More info: https://forum.kicad.info/t/new-project-file-format/23705
I added this .gitignore to a project that included a file named CoverageSearchModel.cs, and the file was wrongly ignored. This change fixes the incorrect use of the range operator on the Coverlet rules.
John Stilley [Fri, 3 Jul 2020 18:07:44 +0000 (14:07 -0400)]
Fixing target and adding debug to Rust gitignore (#3436)
The problem here was two fold:
1. the folder "/target/" would be top-level of the repo only, it should be "target/" to properly exclude target folders anywhere in the repo
2. the default Rust/Cargo folder when compiling code is "debug/", which gets used perhaps more often that "target/", added that
Jakob Sagatowski [Tue, 26 May 2020 14:17:55 +0000 (16:17 +0200)]
After adding the new product "TF3680 - TC3 Filter" as a reference, some new files were automatically generated after compilation:
_ModuleInstall/TcFilter/TwinCAT CE7 (ARMV7)/TcFilterW32.dll
_ModuleInstall/TcFilter/TwinCAT CE7 (x86)/TcFilterW32.dll
_ModuleInstall/TcFilter/TwinCAT RT (x64)/TcFilter.sys
_ModuleInstall/TcFilter/TwinCAT RT (x86)/TcFilter.sys
After contacting Beckhoff support, it was concluded that the folder "_ModuleInstall" could be omitted from version control, thus this addition.
Jon Layton [Thu, 14 May 2020 11:49:06 +0000 (07:49 -0400)]
Add .yarn/install-state.gz to Node.gitignore (#3407)
After running `yarn set version berry` and `yarn install`, the file `.yarn/install-state.gz` is created.
The documentation at https://yarnpkg.com/advanced/qa#which-files-should-be-gitignored mentions that this file should be ignored:
> .yarn/install-state.tgz is an optimization file that you shouldn't have to ever commit. It simply stores the exact state of your project so that the next commands can boot without having to resolve your workspaces again.
The documentation has a minor error; the generated file is `.gz` instead of `.tgz` (source: https://github.com/yarnpkg/berry/pull/998/files#diff-23dd4c2e823c25186f1107e88e962032R201)
This will add support for the default location the Local History extension for Visual Studio Code uses.
See https://marketplace.visualstudio.com/items?itemName=xyz.local-history
Jeffrey Walton [Thu, 12 Mar 2020 11:21:54 +0000 (07:21 -0400)]
Add Win32/ to gitginore list (#3308)
Visual Studio .Net used Win32/ as one of the default output directories for C and C++ projects. Later, when 64-bit support was added to the toolchain (circa 2005), x64/ was used. The Gitignore files include x64/, but not Win32/. The commit adds support for both Win32/ and x64/.
Sam Gleske [Wed, 11 Mar 2020 13:03:44 +0000 (09:03 -0400)]
Improved JENKINS_HOME example (#3332)
After years of use I've come up with some improvements to the
`JENKINS_HOME.gitignore` example.
- Major performance improvement: On very large Jenkins installations that
have been running for more than one year, there tends to be many builds
(hundreds of thousands of builds). The `builds` directory of these
jobs contain millions of files which would cause Git to hang for
several minutes on simple commands like `git status` and longer for
committing changes. `strace` was used on Git to figure out the
performance impact and this proposed change includes the optimization.
I also added a clear comment explaining the line's purpose.
- There's an example for how to include Jenkins encryption keys, and
there's a disclaimer informing the user why they shouldn't but still
giving an example.
- Comments have been reworded and slightly reformatted to be a little
more clear.
Cython extension modules built with `gdb_debug=True` spit out debug symbols in the `cython_debug` directory at the top level of the project. The files in this directory contain hardcoded paths and are not shareable/meaningful across environments, so I think it makes sense to include them in a default Python .gitignore.