mirror of
https://github.com/github/gitignore
synced 2024-11-30 07:34:22 +01:00
Merge branch 'master' of https://github.com/github/gitignore
This commit is contained in:
commit
e3be083b88
@ -83,3 +83,6 @@ lint/generated/
|
|||||||
lint/outputs/
|
lint/outputs/
|
||||||
lint/tmp/
|
lint/tmp/
|
||||||
# lint/reports/
|
# lint/reports/
|
||||||
|
|
||||||
|
# Android Profiling
|
||||||
|
*.hprof
|
||||||
|
@ -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>
|
||||||
|
@ -1,4 +1,3 @@
|
|||||||
|
|
||||||
# Godot-specific ignores
|
# Godot-specific ignores
|
||||||
.import/
|
.import/
|
||||||
export.cfg
|
export.cfg
|
||||||
|
@ -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-*
|
||||||
|
@ -40,3 +40,6 @@ vignettes/*.pdf
|
|||||||
|
|
||||||
# pkgdown site
|
# pkgdown site
|
||||||
docs/
|
docs/
|
||||||
|
|
||||||
|
# translation temp files
|
||||||
|
po/*~
|
||||||
|
@ -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
|
||||||
|
@ -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
|
||||||
|
@ -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
|
||||||
|
Loading…
Reference in New Issue
Block a user