Message ID | c3f6a2d8fd7a1df487a6fce99e8e0f785ac4fc75.1736943927.git.yann.dirson@vates.tech (mailing list archive) |
---|---|
State | New |
Headers | show |
Series | trivial improvements to sphinx doc tooling | expand |
On 15/01/2025 12:27 pm, Yann Dirson wrote: > diff --git a/docs/.gitignore b/docs/.gitignore > new file mode 100644 > index 0000000000..0727c6d7cf > --- /dev/null > +++ b/docs/.gitignore > @@ -0,0 +1,14 @@ > +/figs/*.png > +/html/ > +/man/xl.cfg.5.pod > +/man/xl-disk-configuration.5.pod > +/man/xl-network-configuration.5.pod > +/man/xl.1.pod > +/man/xl.conf.5.pod > +/man1/ > +/man5/ > +/man7/ > +/man8/ > +/pdf/ > +/tmp.* > +/txt/ I'm reasonably sure tmp.* is stale now. I can't find anything that references it now. Also, the manpages ought to be /man[1-9]/ to use a single pattern and cover all reasonable eventualities. I can fix these on commit. ~Andrew
diff --git a/.gitignore b/.gitignore index 25484a8fd8..53f5df0003 100644 --- a/.gitignore +++ b/.gitignore @@ -50,19 +50,6 @@ config/Toplevel.mk config/Paths.mk dist/* -docs/tmp.* -docs/html/ -docs/man/xl.cfg.5.pod -docs/man/xl-disk-configuration.5.pod -docs/man/xl-network-configuration.5.pod -docs/man/xl.1.pod -docs/man/xl.conf.5.pod -docs/man1/ -docs/man5/ -docs/man7/ -docs/man8/ -docs/pdf/ -docs/txt/ extras/ install/* @@ -302,7 +289,3 @@ tools/debugger/kdd/kdd tools/firmware/etherboot/ipxe.tar.gz tools/firmware/etherboot/ipxe/ tools/xl/xl - -docs/txt/misc/*.txt -docs/txt/man/*.txt -docs/figs/*.png diff --git a/docs/.gitignore b/docs/.gitignore new file mode 100644 index 0000000000..0727c6d7cf --- /dev/null +++ b/docs/.gitignore @@ -0,0 +1,14 @@ +/figs/*.png +/html/ +/man/xl.cfg.5.pod +/man/xl-disk-configuration.5.pod +/man/xl-network-configuration.5.pod +/man/xl.1.pod +/man/xl.conf.5.pod +/man1/ +/man5/ +/man7/ +/man8/ +/pdf/ +/tmp.* +/txt/
Note I did not transplant the patterns under doc/txt/ (since the whole dir is ignored already), and adjusted sort order to be fully alphabetical. Signed-off-by: Yann Dirson <yann.dirson@vates.tech> --- .gitignore | 17 ----------------- docs/.gitignore | 14 ++++++++++++++ 2 files changed, 14 insertions(+), 17 deletions(-) create mode 100644 docs/.gitignore