1
0
mirror of https://github.com/github/gitignore synced 2024-11-29 23:24:21 +01:00
This commit is contained in:
Mike Wheway 2020-12-16 10:14:40 -05:00
commit e3be083b88
8 changed files with 19 additions and 8 deletions

View File

@ -83,3 +83,6 @@ lint/generated/
lint/outputs/ lint/outputs/
lint/tmp/ lint/tmp/
# lint/reports/ # lint/reports/
# Android Profiling
*.hprof

View File

@ -4,7 +4,7 @@ This directory contains globally useful gitignores,
e.g. OS-specific and editor specific. e.g. OS-specific and editor specific.
For more on global gitignores: For more on global gitignores:
<https://help.github.com/articles/ignoring-files/#create-a-global-gitignore> <https://help.github.com/en/github/using-git/ignoring-files#configuring-ignored-files-for-all-repositories-on-your-computer>
And a good blog post about 'em: And a good blog post about 'em:
<http://augustl.com/blog/2009/global_gitignores> <http://augustl.com/blog/2009/global_gitignores>

View File

@ -1,4 +1,3 @@
# Godot-specific ignores # Godot-specific ignores
.import/ .import/
export.cfg export.cfg

View File

@ -6,6 +6,8 @@
*.bak *.bak
*.bck *.bck
*.kicad_pcb-bak *.kicad_pcb-bak
*.kicad_sch-bak
*.kicad_prl
*.sch-bak *.sch-bak
*~ *~
_autosave-* _autosave-*

View File

@ -40,3 +40,6 @@ vignettes/*.pdf
# pkgdown site # pkgdown site
docs/ docs/
# translation temp files
po/*~

View File

@ -1,6 +1,7 @@
# Generated by Cargo # Generated by Cargo
# will have compiled files and executables # will have compiled files and executables
/target/ debug/
target/
# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries # Remove Cargo.lock from gitignore if creating an executable, leave it for libraries
# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html # More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html

View File

@ -8,11 +8,12 @@
# Crash log files # Crash log files
crash.log crash.log
# Ignore any .tfvars files that are generated automatically for each Terraform run. Most # Exclude all .tfvars files, which are likely to contain sentitive data, such as
# .tfvars files are managed as part of configuration and so should be included in # password, private keys, and other secrets. These should not be part of version
# version control. # control as they are data points which are potentially sensitive and subject
# to change depending on the environment.
# #
# example.tfvars *.tfvars
# Ignore override files as they are usually used to override resources locally and so # Ignore override files as they are usually used to override resources locally and so
# are not checked in # are not checked in

View File

@ -142,7 +142,9 @@ _TeamCity*
!.axoCover/settings.json !.axoCover/settings.json
# Coverlet is a free, cross platform Code Coverage Tool # Coverlet is a free, cross platform Code Coverage Tool
coverage*[.json, .xml, .info] coverage*.json
coverage*.xml
coverage*.info
# Visual Studio code coverage results # Visual Studio code coverage results
*.coverage *.coverage