Skip to content

Commit 6d4ac45

Browse files
Improvements .gitignore (#15798)
# Objective I tried to improve gitignore. I am not a programming expert yet, so I don't know all the junk files. If someone provides me with a list of other files, can you point me to it below? I also tried to sort them logically, hope it works. > This is also my first PR in the history of this engine. and I'm very happy 😄
1 parent 3da0ef0 commit 6d4ac45

File tree

1 file changed

+15
-8
lines changed

1 file changed

+15
-8
lines changed

.gitignore

Lines changed: 15 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,33 @@
1+
# Rust build artifacts
12
/target
23
crates/*/target
34
**/*.rs.bk
5+
/benches/target
6+
/tools/compile_fail_utils/target
7+
8+
# Cargo
49
Cargo.lock
510
.cargo/config
611
.cargo/config.toml
12+
13+
# IDE files
714
/.idea
815
/.vscode
916
.zed
10-
/benches/target
11-
/tools/compile_fail_utils/target
1217
dxcompiler.dll
1318
dxil.dll
1419

15-
# Generated by "examples/scene/scene.rs"
16-
assets/scenes/load_scene_example-new.scn.ron
17-
18-
# Generated by "examples/window/screenshot.rs"
19-
**/screenshot-*.png
20-
20+
# Bevy Assets
2121
assets/**/*.meta
2222
crates/bevy_asset/imported_assets
2323
imported_assets
2424

25+
# Bevy Examples
2526
example_showcase_config.ron
2627
example-showcase-reports/
28+
29+
# Generated by "examples/scene/scene.rs"
30+
assets/scenes/load_scene_example-new.scn.ron
31+
32+
# Generated by "examples/window/screenshot.rs"
33+
**/screenshot-*.png

0 commit comments

Comments
 (0)