diff options
| author | brian m. carlson <sandals@crustytoothpaste.net> | 2025-01-20 01:55:59 +0000 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2025-01-21 12:56:05 -0800 |
| commit | 89cdbffa8619b0f5e87bacf12dfa400259511b1e (patch) | |
| tree | 2997347ed9347ec46bc8daa861d3493ee666e66a | |
| parent | 757161efcca150a9a96b312d9e780a071e601a03 (diff) | |
| download | git-89cdbffa8619b0f5e87bacf12dfa400259511b1e.tar.gz | |
doc: update gitignore for .adoc extension
We presently use the ".txt" extension for our AsciiDoc files. While not
wrong, most editors do not associate this extension with AsciiDoc,
meaning that contributors don't get automatic editor functionality that
could be useful, such as syntax highlighting and prose linting.
Instead, in a future commit, we're going to move to using the more
common ".adoc" extension for these files, which many editors
intrinsically recognize as an AsciiDoc file. To avoid contributors
accidentally checking in generated files, ignore the new extension for
generated files in the documentation .gitignore files.
Signed-off-by: brian m. carlson <sandals@crustytoothpaste.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
| -rw-r--r-- | Documentation/.gitignore | 4 | ||||
| -rw-r--r-- | Documentation/technical/.gitignore | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/Documentation/.gitignore b/Documentation/.gitignore index 9f4bb3c4bf..abce806398 100644 --- a/Documentation/.gitignore +++ b/Documentation/.gitignore @@ -7,10 +7,14 @@ git.info gitman.info howto-index.txt +howto-index.adoc doc.dep cmds-*.txt +cmds-*.adoc mergetools-*.txt +mergetools-*.adoc SubmittingPatches.txt +SubmittingPatches.adoc tmp-doc-diff/ tmp-meson-diff/ GIT-ASCIIDOCFLAGS diff --git a/Documentation/technical/.gitignore b/Documentation/technical/.gitignore index 8aa891daee..3caef14a93 100644 --- a/Documentation/technical/.gitignore +++ b/Documentation/technical/.gitignore @@ -1 +1,2 @@ api-index.txt +api-index.adoc |
