Commit Graph

3389 Commits

Author SHA1 Message Date
d15076ed4a Rust: ignore .pdb files
MSVC builds of Rust on Windows automatically generate `*.pdb` files, which
store debugging information. For more information, see:

* https://github.com/rust-lang/rustlings/issues/275
* https://locka99.gitbooks.io/a-guide-to-porting-c-to-rust/content/debugging_rust/#microsoft-visual-studio
2021-04-27 09:54:38 -04:00
db66a1d5e4 ignore dotenv in dart 2021-04-25 08:36:17 +05:30
81297a6c42 Add missing extension for GregorioTeX 2021-04-21 19:53:11 +01:00
5f1ce29425 Add nuget.config file
Add nuget.config file because it contains secret data and should be kept localy
2021-04-21 18:45:44 +04:30
d16b10824c add scala jvm crash files 2021-04-21 13:37:41 +02:00
6d5f266f6c Add Strapi CMS .gitignore 2021-04-21 09:23:03 +01:00
68f4c9a5a9 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.
2021-04-13 10:39:58 -04:00
a4b2c4e498 adds technical note for more info 2021-03-29 15:08:20 -04:00
fd40ca24de Add .tlog to the Visual Studio template 2021-03-26 12:32:11 -04:00
Ali
ced0493773 Remove .obj 2021-03-25 11:35:51 +04:30
Ali
520cfca67f Add Vlang Support By Vlang Community 2021-03-25 01:29:52 +04:30
4c55d7cc4b Update .gitignore for Idris 2 2021-03-15 14:32:59 +06:00
af117702e7 Update Autotools.gitignore
Add config.cache, generated when using Autotools `./configure -C`.
2021-03-10 10:04:39 -06:00
6b89235c5a Add newpax 2021-03-06 14:11:49 +01:00
b236e1717b Just ignore .env.production, avoid to effect for .env.example
https://github.com/github/gitignore/pull/3651/files#r576363678
2021-02-28 01:18:35 +09:00
5423fe33d9 add COLCON_IGNORE 2021-02-22 16:48:18 +09:00
774c69da70 add ROS2 gitignore 2021-02-22 16:40:26 +09:00
52f8df58fc Update Xojo.gitignore for changes to .obsolete
Updates the *.obsolete ignore to match datestamped .obsolete items from newer IDE versions.
2021-02-21 10:14:43 -05:00
08b10f18e7 style(Autotools): remove trailing whitespaces 2021-02-15 22:38:15 +01:00
6586918a42 Ignore .env.* in Node.js 2021-02-16 03:02:14 +09:00
bb28a8ce82 Delete fixed workaround
The workaround for https://youtrack.jetbrains.com/issue/IDEA-116898 is fixed now, so we can remove the workaround.
2021-02-09 18:32:09 -07:00
218a941be9 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
2020-07-12 12:07:13 -03:00
f44d83083e Remove pointless blank line from the beginning of the Godot file (#3466) 2020-07-12 12:04:53 -03:00
36ce3a894d Exclude *.tfvars files (#3452)
Co-authored-by: Kevin Cochran <kcochran@hashicorp.com>
2020-07-06 21:36:25 -03:00
eea28935df ignore HPROF files (#3456) 2020-07-04 13:35:59 -03:00
5cf393421d ignore *~ files in the po directory (#3453)
Common IME for `gettext` utilities like `tools::update_pkg_po('.')` to create these temp files (at least on Mac)
2020-07-03 17:19:48 -03:00
c9fab68db3 Update stale heading anchor (#3445)
Co-authored-by: ZhengYuan Loo <loozhengyuan@users.noreply.github.com>
2020-07-03 17:17:35 -03:00
6eff882467 Fix false positives on Coverage*.cs files (#3454)
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.
2020-07-03 17:15:33 -03:00
620d4878a0 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
2020-07-03 15:07:44 -03:00
22f1ff9ac0 Add JetBrains note for PyCharm to Python.gitignore
First and foremost I think that requiring such a complicated gitignore for JetBrains IDEs is a failure on JetBrains part in structuring their project setting.  I also feel that it should be included in the `Python.gitignore` due to its popularity and due to the frequency of requests.  A quick search for `PyCharm` PRs shows 81 closed PRs requesting it be added and if searching for `.idea` you can see many more have been requested.  However I understand the maintenance burden in including it when a user can manually merge the two files themselves so I understand why the maintainers have opted to maintain it seperately.  

The main problem I see is that with many people adding the `Python.gitignore` at project creation through the Github UI and the `JetBrains.gitignore` being in the Global folder and makes it less discoverable than it should be.  

This PR adds a comment for people adding the `Python.gitignore` directing them to the global `JetBrains.gitignore` which should solve this issue in a way that is acceptable for the maintainers, since comment-only sections already exist for `pyenv` and `pipenv`.
2020-06-24 15:47:11 -04:00
88014e6d0c 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.
2020-05-26 16:17:55 +02:00
18aa6d8377 Add *.aab (#3414) 2020-05-19 10:48:08 -03:00
6935207fef ignore .xwm generated by xwatermark package in TeX (#3412) 2020-05-19 09:19:39 -03:00
7293c14345 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)
2020-05-14 08:49:06 -03:00
07b3cd7a90 Dart: Ignore .flutter-plugins (#3398)
Generated files that appear when using 'google_fonts' or other Dart
packages designed as Flutter plugins.
2020-05-06 10:30:31 -03:00
eee21bf0c3 Ignore Next.js next export result directory (#3387) 2020-04-29 10:45:59 -03:00
2a4de265d3 Add FodyWeavers.xsd to VisualStudio.gitignore (#3380) 2020-04-20 21:27:53 -03:00
80587386dd Ignore Gradle subproject build dir (#3370) 2020-04-14 16:14:56 -03:00
14f8a8b4c5 Remove pip-wheel-metadata/ from Python.gitignore (#3364)
pip generated this folder for a few versions, as part of it's initial
implementation of PEP 517.

pip has not generated this folder for a few versions now, so it should
be OK to remove this from the standard gitignore file.
2020-04-11 18:21:33 -03:00
994f99fc35 Add generated timing files to Coq.gitignore (#3367)
These generated files were added in https://github.com/coq/coq/pull/745
2020-04-07 09:53:51 -03:00
2f75277037 Ignore AWS Serverless Application Model build folder (#3357)
https://docs.aws.amazon.com/serverless-application-model/latest/developerguide/sam-cli-command-reference-sam-build.html
2020-04-04 13:32:58 -03:00
8300d88565 Ignore Terraform CLI configuration files (#3359) 2020-04-04 13:32:17 -03:00
e607bdd855 Revert "[Python] adding IDE & static related stuff (#3317)" (#3363)
This reverts commit e931ef7f3e.
2020-04-04 13:30:58 -03:00
eefa65c924 Ignore Local History folder (#3008)
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
2020-04-04 13:30:38 -03:00
e00e3cc6cd added file extensions when glossaries is loaded with "symbols" option 2020-03-28 21:20:04 +01:00
3df9bc0bd9 Update R.gitignore (#3354) 2020-03-28 11:47:35 -03:00
e931ef7f3e [Python] adding IDE & static related stuff (#3317) 2020-03-13 08:53:35 -03:00
ae5431d6f0 Changes to PyBuilder 0.12+ (#3338)
PyB 0.12 uses `$project_root/.pybuilder/` for internal venvs.
2020-03-12 15:49:35 -03:00
ef59ea57e8 Extend Qt.gitignore with qmlcache qrc files (#3322)
Projects using QML files generating a temporary qrc file if a qrc file present in the project.
2020-03-12 15:47:06 -03:00
c851a10cab update README (#3248) 2020-03-12 08:23:31 -03:00