From 92476f342f9fdd43248b274b0c284bb3dd8ff57e Mon Sep 17 00:00:00 2001 From: Frank Denzer Date: Fri, 2 Jun 2023 14:49:02 +0200 Subject: [PATCH] amend gitignore for rust subdir --- hello_world/.gitignore | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 hello_world/.gitignore diff --git a/hello_world/.gitignore b/hello_world/.gitignore new file mode 100644 index 0000000..b1a2ca3 --- /dev/null +++ b/hello_world/.gitignore @@ -0,0 +1,14 @@ +# Ignore compiled artifacts and build directories +/target/ +Cargo.lock + +# Ignore editor-specific temporary files +**/*.rs.bk + +# Ignore generated documentation +/target/doc/ + +# Ignore generated binaries +Cargo.toml.orig +Cargo.toml.bk +Cargo.lock.bk