Git fork

doc: add some missing technical documents

Commit bcf7edee09 ("meson: generate articles", 2024-12-27) added the
generation of the 'howto' and 'technical' documents to the meson build.
At this time those documents had a '*.txt' file extension, but they were
renamed with an '*.adoc' extension by commit 1f010d6bdf ("doc: use .adoc
extension for AsciiDoc files", 2025-01-20), for the most part. For the
meson build, commit 87eccc3a81 ("meson: fix building technical and howto
docs", 2025-03-02) fixed the meson.build files, which had not been
updated when the files were renamed.

However, the 'Documentation/Makefile' has not been updated to include
all of the recently added technical documents. In particular, the
following are built by meson, but not by the Makefile:

commit-graph.adoc
directory-rename-detection.adoc
packfile-uri.adoc
remembering-renames.adoc
repository-version.adoc
rerere.adoc
sparse-checkout.adoc
sparse-index.adoc

In order to ensure that both build systems format the same technical
documents, add the above documents to the TECH_DOCS variable in the
Documentation/Makefile.

Signed-off-by: Ramsay Jones <ramsay@ramsayjones.plus.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>

authored by

Ramsay Jones and committed by
Junio C Hamano
52751000 bb697214

+8
+8
Documentation/Makefile
··· 119 119 TECH_DOCS += technical/bitmap-format 120 120 TECH_DOCS += technical/build-systems 121 121 TECH_DOCS += technical/bundle-uri 122 + TECH_DOCS += technical/commit-graph 123 + TECH_DOCS += technical/directory-rename-detection 122 124 TECH_DOCS += technical/hash-function-transition 123 125 TECH_DOCS += technical/long-running-process-protocol 124 126 TECH_DOCS += technical/multi-pack-index 127 + TECH_DOCS += technical/packfile-uri 125 128 TECH_DOCS += technical/pack-heuristics 126 129 TECH_DOCS += technical/parallel-checkout 127 130 TECH_DOCS += technical/partial-clone 128 131 TECH_DOCS += technical/platform-support 129 132 TECH_DOCS += technical/racy-git 130 133 TECH_DOCS += technical/reftable 134 + TECH_DOCS += technical/remembering-renames 135 + TECH_DOCS += technical/repository-version 136 + TECH_DOCS += technical/rerere 131 137 TECH_DOCS += technical/scalar 132 138 TECH_DOCS += technical/send-pack-pipeline 133 139 TECH_DOCS += technical/shallow 140 + TECH_DOCS += technical/sparse-checkout 141 + TECH_DOCS += technical/sparse-index 134 142 TECH_DOCS += technical/trivial-merge 135 143 TECH_DOCS += technical/unit-tests 136 144 SP_ARTICLES += $(TECH_DOCS)