From 609c7956c08e4221cfc47ce5f73fd65629b9d14e Mon Sep 17 00:00:00 2001 From: Christopher Moussa Date: Tue, 15 Oct 2024 13:51:59 -0700 Subject: [PATCH] .gitignore: add built docs, sharness test results Problem: Git does not ignore the built documentation under doc/_build or the .log or .trs files as a result of running sharness tests. Add the docs intermediate files and sharness test result files to the list of ignored files by Git. --- .gitignore | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.gitignore b/.gitignore index 49b063f3d..fd21a84db 100644 --- a/.gitignore +++ b/.gitignore @@ -71,3 +71,11 @@ config.h.in config.h.in~ config.h config.status + +# misc +*.trs +*.log + +# docs intermediate files +/doc/man*/*.xml +/doc/_build