From faf07ed3b07ed2e10e2aae8d93f1bfddfec37c6f Mon Sep 17 00:00:00 2001 From: Arjav Patel Date: Thu, 21 May 2026 10:40:44 +0530 Subject: [PATCH] apps/system/microros: Add .gitignore for library build artifacts. Ignore build outputs and generated files: - Directories: micro_ros_src/, micro_ros_dev/, build/, install/ - Build outputs: libmicroros.a, toolchain.cmake, colcon.meta - Archives: *.tar.gz Prevents build artifacts and downloaded sources from being committed. Signed-off-by: Arjav Patel --- system/microros/.gitignore | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 system/microros/.gitignore diff --git a/system/microros/.gitignore b/system/microros/.gitignore new file mode 100644 index 000000000..878b0e80a --- /dev/null +++ b/system/microros/.gitignore @@ -0,0 +1,13 @@ +# Build artifacts +/build/ +/install/ +/micro_ros_dev/ +/micro_ros_src/ + +# Generated files +/libmicroros.a +/toolchain.cmake +/colcon.meta + +# Archives +*.tar.gz