2 'coordinate-embargoed-releases.txt',
3 'keep-canonical-history-correct.txt',
6 'rebase-from-internal-branch.txt',
7 'rebuild-from-update-hook.txt',
8 'recover-corrupted-blob-object.txt',
9 'recover-corrupted-object-harder.txt',
10 'revert-a-faulty-merge.txt',
11 'revert-branch-rebase.txt',
12 'separating-topic-branches.txt',
13 'setup-git-server-over-http.txt',
14 'update-hook-example.txt',
16 'using-merge-subtree.txt',
17 'using-signed-tag-in-pull-request.txt',
20 howto_index = custom_target(
23 meson.current_source_dir() / 'howto-index.sh',
26 env: script_environment,
29 output: 'howto-index.txt',
33 command: asciidoc_html_options,
35 output: 'howto-index.html',
36 depends: documentation_deps,
38 install_dir: get_option('datadir') / 'doc/git-doc',
41 foreach howto : howto_sources
42 howto_stripped = custom_target(
50 output: fs.stem(howto) + '.stripped',
55 command: asciidoc_html_options,
56 input: howto_stripped,
57 output: fs.stem(howto_stripped.full_path()) + '.html',
58 depends: documentation_deps,
60 install_dir: get_option('datadir') / 'doc/git-doc/howto',