From 1ed5c4f1d1169693c32db1d24b1d92a676770e94 Mon Sep 17 00:00:00 2001 From: kreempuff <10726831+kreempuff@users.noreply.github.com> Date: Sun, 22 Sep 2024 10:10:34 -0400 Subject: [PATCH] feat: add .gitignore file Use the "reverse" ignore pattern to ignore everything except the files we want to keep in the repository. --- .gitignore | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a0e9ed9 --- /dev/null +++ b/.gitignore @@ -0,0 +1,20 @@ +** +!.gitignore +!.github +!cmd +!docs +!internal +!parse-xml +!pkg +!BUILD +!MODULE.bazel +!MODULE.bazel.lock +!*.go +!go.* +!.bazel_fix_commands.json +!renovate.json +!README.md +!parse-xml-cli.ts +!.adr-dir +!.bazelrc +!*.bzl \ No newline at end of file