From c00669d99a37fd02a44f96cb085ed81fabb2c9f2 Mon Sep 17 00:00:00 2001 From: ToasterUwU Date: Sat, 2 Dec 2023 14:58:09 +0100 Subject: [PATCH] feat(.gitignore): Ignore new build and output files Added several file patterns related to build process and output directories to the .gitignore file. This keeps the repository clean by preventing unintentional commits of unnecessary files generated during software builds and compiling processes. It also reduces clutter, making the repo easier to navigate, and improves the overall efficiency of work with the codebase. --- .gitignore | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..186c5ad --- /dev/null +++ b/.gitignore @@ -0,0 +1,7 @@ +*.ddeb +*.tar.xz +*.dsc +*.changes +*.buildinfo +output +src-pkg-openrgb \ No newline at end of file