Git fork

doc: use .adoc extension for AsciiDoc files

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.

It is much more common to use the ".adoc" extension for AsciiDoc files,
since this helps editors automatically detect files and also allows
various forges to provide rich (HTML-like) rendering. Let's do that
here, renaming all of the files and updating the includes where
relevant. Adjust the various build scripts and makefiles to use the new
extension as well.

Note that this should not result in any user-visible changes to the
documentation.

Signed-off-by: brian m. carlson <sandals@crustytoothpaste.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>

authored by

brian m. carlson and committed by
Junio C Hamano
1f010d6b ed4cf6e8

+614 -614
Documentation/BreakingChanges.txt Documentation/BreakingChanges.adoc
Documentation/DecisionMaking.txt Documentation/DecisionMaking.adoc
+97 -97
Documentation/Makefile
··· 17 17 -include GIT-EXCLUDED-PROGRAMS 18 18 19 19 MAN1_TXT += $(filter-out \ 20 - $(patsubst %,%.txt,$(EXCLUDED_PROGRAMS)) \ 21 - $(addsuffix .txt, $(ARTICLES) $(SP_ARTICLES)), \ 22 - $(wildcard git-*.txt)) 23 - MAN1_TXT += git.txt 24 - MAN1_TXT += gitk.txt 25 - MAN1_TXT += gitweb.txt 26 - MAN1_TXT += scalar.txt 20 + $(patsubst %,%.adoc,$(EXCLUDED_PROGRAMS)) \ 21 + $(addsuffix .adoc, $(ARTICLES) $(SP_ARTICLES)), \ 22 + $(wildcard git-*.adoc)) 23 + MAN1_TXT += git.adoc 24 + MAN1_TXT += gitk.adoc 25 + MAN1_TXT += gitweb.adoc 26 + MAN1_TXT += scalar.adoc 27 27 28 28 # man5 / man7 guides (note: new guides should also be added to command-list.txt) 29 - MAN5_TXT += gitattributes.txt 30 - MAN5_TXT += gitformat-bundle.txt 31 - MAN5_TXT += gitformat-chunk.txt 32 - MAN5_TXT += gitformat-commit-graph.txt 33 - MAN5_TXT += gitformat-index.txt 34 - MAN5_TXT += gitformat-pack.txt 35 - MAN5_TXT += gitformat-signature.txt 36 - MAN5_TXT += githooks.txt 37 - MAN5_TXT += gitignore.txt 38 - MAN5_TXT += gitmailmap.txt 39 - MAN5_TXT += gitmodules.txt 40 - MAN5_TXT += gitprotocol-capabilities.txt 41 - MAN5_TXT += gitprotocol-common.txt 42 - MAN5_TXT += gitprotocol-http.txt 43 - MAN5_TXT += gitprotocol-pack.txt 44 - MAN5_TXT += gitprotocol-v2.txt 45 - MAN5_TXT += gitrepository-layout.txt 46 - MAN5_TXT += gitweb.conf.txt 29 + MAN5_TXT += gitattributes.adoc 30 + MAN5_TXT += gitformat-bundle.adoc 31 + MAN5_TXT += gitformat-chunk.adoc 32 + MAN5_TXT += gitformat-commit-graph.adoc 33 + MAN5_TXT += gitformat-index.adoc 34 + MAN5_TXT += gitformat-pack.adoc 35 + MAN5_TXT += gitformat-signature.adoc 36 + MAN5_TXT += githooks.adoc 37 + MAN5_TXT += gitignore.adoc 38 + MAN5_TXT += gitmailmap.adoc 39 + MAN5_TXT += gitmodules.adoc 40 + MAN5_TXT += gitprotocol-capabilities.adoc 41 + MAN5_TXT += gitprotocol-common.adoc 42 + MAN5_TXT += gitprotocol-http.adoc 43 + MAN5_TXT += gitprotocol-pack.adoc 44 + MAN5_TXT += gitprotocol-v2.adoc 45 + MAN5_TXT += gitrepository-layout.adoc 46 + MAN5_TXT += gitweb.conf.adoc 47 47 48 - MAN7_TXT += gitcli.txt 49 - MAN7_TXT += gitcore-tutorial.txt 50 - MAN7_TXT += gitcredentials.txt 51 - MAN7_TXT += gitcvs-migration.txt 52 - MAN7_TXT += gitdiffcore.txt 53 - MAN7_TXT += giteveryday.txt 54 - MAN7_TXT += gitfaq.txt 55 - MAN7_TXT += gitglossary.txt 56 - MAN7_TXT += gitpacking.txt 57 - MAN7_TXT += gitnamespaces.txt 58 - MAN7_TXT += gitremote-helpers.txt 59 - MAN7_TXT += gitrevisions.txt 60 - MAN7_TXT += gitsubmodules.txt 61 - MAN7_TXT += gittutorial-2.txt 62 - MAN7_TXT += gittutorial.txt 63 - MAN7_TXT += gitworkflows.txt 48 + MAN7_TXT += gitcli.adoc 49 + MAN7_TXT += gitcore-tutorial.adoc 50 + MAN7_TXT += gitcredentials.adoc 51 + MAN7_TXT += gitcvs-migration.adoc 52 + MAN7_TXT += gitdiffcore.adoc 53 + MAN7_TXT += giteveryday.adoc 54 + MAN7_TXT += gitfaq.adoc 55 + MAN7_TXT += gitglossary.adoc 56 + MAN7_TXT += gitpacking.adoc 57 + MAN7_TXT += gitnamespaces.adoc 58 + MAN7_TXT += gitremote-helpers.adoc 59 + MAN7_TXT += gitrevisions.adoc 60 + MAN7_TXT += gitsubmodules.adoc 61 + MAN7_TXT += gittutorial-2.adoc 62 + MAN7_TXT += gittutorial.adoc 63 + MAN7_TXT += gitworkflows.adoc 64 64 65 - HOWTO_TXT += $(wildcard howto/*.txt) 65 + HOWTO_TXT += $(wildcard howto/*.adoc) 66 66 67 - DOC_DEP_TXT += $(wildcard *.txt) 68 - DOC_DEP_TXT += $(wildcard config/*.txt) 69 - DOC_DEP_TXT += $(wildcard includes/*.txt) 67 + DOC_DEP_TXT += $(wildcard *.adoc) 68 + DOC_DEP_TXT += $(wildcard config/*.adoc) 69 + DOC_DEP_TXT += $(wildcard includes/*.adoc) 70 70 71 71 ifdef MAN_FILTER 72 72 MAN_TXT = $(filter $(MAN_FILTER),$(MAN1_TXT) $(MAN5_TXT) $(MAN7_TXT)) ··· 75 75 MAN_FILTER = $(MAN_TXT) 76 76 endif 77 77 78 - MAN_XML = $(patsubst %.txt,%.xml,$(MAN_TXT)) 79 - MAN_HTML = $(patsubst %.txt,%.html,$(MAN_TXT)) 78 + MAN_XML = $(patsubst %.adoc,%.xml,$(MAN_TXT)) 79 + MAN_HTML = $(patsubst %.adoc,%.html,$(MAN_TXT)) 80 80 GIT_MAN_REF = master 81 81 82 82 OBSOLETE_HTML += everyday.html ··· 103 103 SP_ARTICLES += howto/keep-canonical-history-correct 104 104 SP_ARTICLES += howto/maintain-git 105 105 SP_ARTICLES += howto/coordinate-embargoed-releases 106 - API_DOCS = $(patsubst %.txt,%,$(filter-out technical/api-index-skel.txt technical/api-index.txt, $(wildcard technical/api-*.txt))) 106 + API_DOCS = $(patsubst %.adoc,%,$(filter-out technical/api-index-skel.adoc technical/api-index.adoc, $(wildcard technical/api-*.adoc))) 107 107 SP_ARTICLES += $(API_DOCS) 108 108 109 109 TECH_DOCS += DecisionMaking ··· 136 136 HTML_FILTER ?= $(ARTICLES_HTML) $(OBSOLETE_HTML) 137 137 DOC_HTML = $(MAN_HTML) $(filter $(HTML_FILTER),$(ARTICLES_HTML) $(OBSOLETE_HTML)) 138 138 139 - DOC_MAN1 = $(patsubst %.txt,%.1,$(filter $(MAN_FILTER),$(MAN1_TXT))) 140 - DOC_MAN5 = $(patsubst %.txt,%.5,$(filter $(MAN_FILTER),$(MAN5_TXT))) 141 - DOC_MAN7 = $(patsubst %.txt,%.7,$(filter $(MAN_FILTER),$(MAN7_TXT))) 139 + DOC_MAN1 = $(patsubst %.adoc,%.1,$(filter $(MAN_FILTER),$(MAN1_TXT))) 140 + DOC_MAN5 = $(patsubst %.adoc,%.5,$(filter $(MAN_FILTER),$(MAN5_TXT))) 141 + DOC_MAN7 = $(patsubst %.adoc,%.7,$(filter $(MAN_FILTER),$(MAN7_TXT))) 142 142 143 143 prefix ?= $(HOME) 144 144 bindir ?= $(prefix)/bin ··· 278 278 install-html: html 279 279 '$(SHELL_PATH_SQ)' ./install-webdoc.sh $(DESTDIR)$(htmldir) 280 280 281 - mergetools_txt = mergetools-diff.txt mergetools-merge.txt 281 + mergetools_txt = mergetools-diff.adoc mergetools-merge.adoc 282 282 283 283 # 284 284 # Determine "include::" file references in asciidoc files. ··· 294 294 -include doc.dep 295 295 endif 296 296 297 - cmds_txt = cmds-ancillaryinterrogators.txt \ 298 - cmds-ancillarymanipulators.txt \ 299 - cmds-mainporcelain.txt \ 300 - cmds-plumbinginterrogators.txt \ 301 - cmds-plumbingmanipulators.txt \ 302 - cmds-synchingrepositories.txt \ 303 - cmds-synchelpers.txt \ 304 - cmds-guide.txt \ 305 - cmds-developerinterfaces.txt \ 306 - cmds-userinterfaces.txt \ 307 - cmds-purehelpers.txt \ 308 - cmds-foreignscminterface.txt 297 + cmds_txt = cmds-ancillaryinterrogators.adoc \ 298 + cmds-ancillarymanipulators.adoc \ 299 + cmds-mainporcelain.adoc \ 300 + cmds-plumbinginterrogators.adoc \ 301 + cmds-plumbingmanipulators.adoc \ 302 + cmds-synchingrepositories.adoc \ 303 + cmds-synchelpers.adoc \ 304 + cmds-guide.adoc \ 305 + cmds-developerinterfaces.adoc \ 306 + cmds-userinterfaces.adoc \ 307 + cmds-purehelpers.adoc \ 308 + cmds-foreignscminterface.adoc 309 309 310 310 $(cmds_txt): cmd-list.made 311 311 ··· 313 313 $(QUIET_GEN)$(PERL_PATH) ./cmd-list.perl .. . $(cmds_txt) && \ 314 314 date >$@ 315 315 316 - mergetools-%.txt: generate-mergetool-list.sh ../git-mergetool--lib.sh $(wildcard ../mergetools/*) 317 - mergetools-diff.txt: 316 + mergetools-%.adoc: generate-mergetool-list.sh ../git-mergetool--lib.sh $(wildcard ../mergetools/*) 317 + mergetools-diff.adoc: 318 318 $(QUIET_GEN)$(SHELL_PATH) ./generate-mergetool-list.sh .. diff $@ 319 - mergetools-merge.txt: 319 + mergetools-merge.adoc: 320 320 $(QUIET_GEN)$(SHELL_PATH) ./generate-mergetool-list.sh .. merge $@ 321 321 322 322 TRACK_ASCIIDOCFLAGS = $(subst ','\'',$(ASCIIDOC_COMMON):$(ASCIIDOC_HTML):$(ASCIIDOC_DOCBOOK)) ··· 333 333 $(RM) *.xml *.xml+ *.html *.html+ *.1 *.5 *.7 334 334 $(RM) *.texi *.texi+ *.texi++ git.info gitman.info 335 335 $(RM) *.pdf 336 - $(RM) howto-index.txt howto/*.html doc.dep 337 - $(RM) technical/*.html technical/api-index.txt 338 - $(RM) SubmittingPatches.txt 336 + $(RM) howto-index.adoc howto/*.html doc.dep 337 + $(RM) technical/*.html technical/api-index.adoc 338 + $(RM) SubmittingPatches.adoc 339 339 $(RM) $(cmds_txt) $(mergetools_txt) *.made 340 340 $(RM) GIT-ASCIIDOCFLAGS 341 341 $(RM) asciidoc.conf asciidoctor-extensions.rb ··· 344 344 docinfo.html: docinfo-html.in 345 345 $(QUIET_GEN)$(RM) $@ && cat $< >$@ 346 346 347 - $(MAN_HTML): %.html : %.txt $(ASCIIDOC_DEPS) 347 + $(MAN_HTML): %.html : %.adoc $(ASCIIDOC_DEPS) 348 348 $(QUIET_ASCIIDOC)$(TXT_TO_HTML) -d manpage -o $@ $< 349 349 350 - $(OBSOLETE_HTML): %.html : %.txto $(ASCIIDOC_DEPS) 350 + $(OBSOLETE_HTML): %.html : %.adoco $(ASCIIDOC_DEPS) 351 351 $(QUIET_ASCIIDOC)$(TXT_TO_HTML) -o $@ $< 352 352 353 353 manpage-prereqs := $(wildcard manpage*.xsl) ··· 360 360 %.7 : %.xml $(manpage-prereqs) 361 361 $(manpage-cmd) 362 362 363 - %.xml : %.txt $(ASCIIDOC_DEPS) 363 + %.xml : %.adoc $(ASCIIDOC_DEPS) 364 364 $(QUIET_ASCIIDOC)$(TXT_TO_XML) -d manpage -o $@ $< 365 365 366 - user-manual.xml: user-manual.txt $(ASCIIDOC_DEPS) 366 + user-manual.xml: user-manual.adoc $(ASCIIDOC_DEPS) 367 367 $(QUIET_ASCIIDOC)$(TXT_TO_XML) -d book -o $@ $< 368 368 369 - technical/api-index.txt: technical/api-index-skel.txt \ 370 - technical/api-index.sh $(patsubst %,%.txt,$(API_DOCS)) 371 - $(QUIET_GEN)'$(SHELL_PATH_SQ)' technical/api-index.sh ./technical ./technical/api-index.txt 369 + technical/api-index.adoc: technical/api-index-skel.adoc \ 370 + technical/api-index.sh $(patsubst %,%.adoc,$(API_DOCS)) 371 + $(QUIET_GEN)'$(SHELL_PATH_SQ)' technical/api-index.sh ./technical ./technical/api-index.adoc 372 372 373 373 technical/%.html: ASCIIDOC_EXTRA += -a git-relative-html-prefix=../ 374 - $(patsubst %,%.html,$(API_DOCS) technical/api-index $(TECH_DOCS)): %.html : %.txt \ 374 + $(patsubst %,%.html,$(API_DOCS) technical/api-index $(TECH_DOCS)): %.html : %.adoc \ 375 375 $(ASCIIDOC_DEPS) 376 - $(QUIET_ASCIIDOC)$(TXT_TO_HTML) $*.txt 376 + $(QUIET_ASCIIDOC)$(TXT_TO_HTML) $*.adoc 377 377 378 - SubmittingPatches.txt: SubmittingPatches 378 + SubmittingPatches.adoc: SubmittingPatches 379 379 $(QUIET_GEN) cp $< $@ 380 380 381 381 XSLT = docbook.xsl ··· 409 409 gitman.info: gitman.texi 410 410 $(QUIET_MAKEINFO)$(MAKEINFO) --no-split --no-validate $< 411 411 412 - $(patsubst %.txt,%.texi,$(MAN_TXT)): %.texi : %.xml 412 + $(patsubst %.adoc,%.texi,$(MAN_TXT)): %.texi : %.xml 413 413 $(QUIET_DB2TEXI)$(DOCBOOK2X_TEXI) --to-stdout $*.xml >$@ 414 414 415 - howto-index.txt: howto/howto-index.sh $(HOWTO_TXT) 415 + howto-index.adoc: howto/howto-index.sh $(HOWTO_TXT) 416 416 $(QUIET_GEN)'$(SHELL_PATH_SQ)' ./howto/howto-index.sh $(sort $(HOWTO_TXT)) >$@ 417 417 418 - $(patsubst %,%.html,$(ARTICLES)) : %.html : %.txt $(ASCIIDOC_DEPS) 419 - $(QUIET_ASCIIDOC)$(TXT_TO_HTML) $*.txt 418 + $(patsubst %,%.html,$(ARTICLES)) : %.html : %.adoc $(ASCIIDOC_DEPS) 419 + $(QUIET_ASCIIDOC)$(TXT_TO_HTML) $*.adoc 420 420 421 421 WEBDOC_DEST = /pub/software/scm/git/docs 422 422 423 423 howto/%.html: ASCIIDOC_EXTRA += -a git-relative-html-prefix=../ 424 - $(patsubst %.txt,%.html,$(HOWTO_TXT)): %.html : %.txt $(ASCIIDOC_DEPS) 424 + $(patsubst %.adoc,%.html,$(HOWTO_TXT)): %.html : %.adoc $(ASCIIDOC_DEPS) 425 425 $(QUIET_ASCIIDOC) \ 426 426 sed -e '1,/^$$/d' $< | \ 427 427 $(TXT_TO_HTML) - >$@ ··· 452 452 @for i in $(MAN1_TXT); do echo $$i; done 453 453 454 454 ## Lint: gitlink 455 - LINT_DOCS_GITLINK = $(patsubst %.txt,.build/lint-docs/gitlink/%.ok,$(HOWTO_TXT) $(DOC_DEP_TXT)) 455 + LINT_DOCS_GITLINK = $(patsubst %.adoc,.build/lint-docs/gitlink/%.ok,$(HOWTO_TXT) $(DOC_DEP_TXT)) 456 456 $(LINT_DOCS_GITLINK): lint-gitlink.perl 457 - $(LINT_DOCS_GITLINK): .build/lint-docs/gitlink/%.ok: %.txt 457 + $(LINT_DOCS_GITLINK): .build/lint-docs/gitlink/%.ok: %.adoc 458 458 $(call mkdir_p_parent_template) 459 459 $(QUIET_LINT_GITLINK)$(PERL_PATH) lint-gitlink.perl \ 460 460 $< \ ··· 466 466 lint-docs-gitlink: $(LINT_DOCS_GITLINK) 467 467 468 468 ## Lint: man-end-blurb 469 - LINT_DOCS_MAN_END_BLURB = $(patsubst %.txt,.build/lint-docs/man-end-blurb/%.ok,$(MAN_TXT)) 469 + LINT_DOCS_MAN_END_BLURB = $(patsubst %.adoc,.build/lint-docs/man-end-blurb/%.ok,$(MAN_TXT)) 470 470 $(LINT_DOCS_MAN_END_BLURB): lint-man-end-blurb.perl 471 - $(LINT_DOCS_MAN_END_BLURB): .build/lint-docs/man-end-blurb/%.ok: %.txt 471 + $(LINT_DOCS_MAN_END_BLURB): .build/lint-docs/man-end-blurb/%.ok: %.adoc 472 472 $(call mkdir_p_parent_template) 473 473 $(QUIET_LINT_MANEND)$(PERL_PATH) lint-man-end-blurb.perl $< >$@ 474 474 .PHONY: lint-docs-man-end-blurb 475 475 476 476 ## Lint: man-section-order 477 - LINT_DOCS_MAN_SECTION_ORDER = $(patsubst %.txt,.build/lint-docs/man-section-order/%.ok,$(MAN_TXT)) 477 + LINT_DOCS_MAN_SECTION_ORDER = $(patsubst %.adoc,.build/lint-docs/man-section-order/%.ok,$(MAN_TXT)) 478 478 $(LINT_DOCS_MAN_SECTION_ORDER): lint-man-section-order.perl 479 - $(LINT_DOCS_MAN_SECTION_ORDER): .build/lint-docs/man-section-order/%.ok: %.txt 479 + $(LINT_DOCS_MAN_SECTION_ORDER): .build/lint-docs/man-section-order/%.ok: %.adoc 480 480 $(call mkdir_p_parent_template) 481 481 $(QUIET_LINT_MANSEC)$(PERL_PATH) lint-man-section-order.perl $< >$@ 482 482 .PHONY: lint-docs-man-section-order ··· 485 485 .PHONY: lint-docs-fsck-msgids 486 486 LINT_DOCS_FSCK_MSGIDS = .build/lint-docs/fsck-msgids.ok 487 487 $(LINT_DOCS_FSCK_MSGIDS): lint-fsck-msgids.perl 488 - $(LINT_DOCS_FSCK_MSGIDS): ../fsck.h fsck-msgids.txt 488 + $(LINT_DOCS_FSCK_MSGIDS): ../fsck.h fsck-msgids.adoc 489 489 $(call mkdir_p_parent_template) 490 490 $(QUIET_GEN)$(PERL_PATH) lint-fsck-msgids.perl \ 491 - ../fsck.h fsck-msgids.txt $@ 491 + ../fsck.h fsck-msgids.adoc $@ 492 492 493 493 lint-docs-fsck-msgids: $(LINT_DOCS_FSCK_MSGIDS) 494 494 ··· 501 501 @mkdir -p tmp-meson-diff && \ 502 502 awk "/^manpages = {$$/ {flag=1 ; next } /^}$$/ { flag=0 } flag { gsub(/^ \047/, \"\"); gsub(/\047 : [157],\$$/, \"\"); print }" meson.build | \ 503 503 grep -v -e '#' -e '^$$' | \ 504 - sort >tmp-meson-diff/meson.txt && \ 505 - ls git*.txt scalar.txt | grep -v -e git-bisect-lk2009.txt -e git-tools.txt >tmp-meson-diff/actual.txt && \ 506 - if ! cmp tmp-meson-diff/meson.txt tmp-meson-diff/actual.txt; then \ 504 + sort >tmp-meson-diff/meson.adoc && \ 505 + ls git*.adoc scalar.adoc | grep -v -e git-bisect-lk2009.adoc -e git-tools.adoc >tmp-meson-diff/actual.adoc && \ 506 + if ! cmp tmp-meson-diff/meson.adoc tmp-meson-diff/actual.adoc; then \ 507 507 echo "Meson man pages differ from actual man pages:"; \ 508 - diff -u tmp-meson-diff/meson.txt tmp-meson-diff/actual.txt; \ 508 + diff -u tmp-meson-diff/meson.adoc tmp-meson-diff/actual.adoc; \ 509 509 exit 1; \ 510 510 fi 511 511
Documentation/MyFirstContribution.txt Documentation/MyFirstContribution.adoc
Documentation/MyFirstObjectWalk.txt Documentation/MyFirstObjectWalk.adoc
Documentation/RelNotes/1.5.0.1.txt Documentation/RelNotes/1.5.0.1.adoc
Documentation/RelNotes/1.5.0.2.txt Documentation/RelNotes/1.5.0.2.adoc
Documentation/RelNotes/1.5.0.3.txt Documentation/RelNotes/1.5.0.3.adoc
Documentation/RelNotes/1.5.0.4.txt Documentation/RelNotes/1.5.0.4.adoc
Documentation/RelNotes/1.5.0.5.txt Documentation/RelNotes/1.5.0.5.adoc
Documentation/RelNotes/1.5.0.6.txt Documentation/RelNotes/1.5.0.6.adoc
Documentation/RelNotes/1.5.0.7.txt Documentation/RelNotes/1.5.0.7.adoc
Documentation/RelNotes/1.5.0.txt Documentation/RelNotes/1.5.0.adoc
Documentation/RelNotes/1.5.1.1.txt Documentation/RelNotes/1.5.1.1.adoc
Documentation/RelNotes/1.5.1.2.txt Documentation/RelNotes/1.5.1.2.adoc
Documentation/RelNotes/1.5.1.3.txt Documentation/RelNotes/1.5.1.3.adoc
Documentation/RelNotes/1.5.1.4.txt Documentation/RelNotes/1.5.1.4.adoc
Documentation/RelNotes/1.5.1.5.txt Documentation/RelNotes/1.5.1.5.adoc
Documentation/RelNotes/1.5.1.6.txt Documentation/RelNotes/1.5.1.6.adoc
Documentation/RelNotes/1.5.1.txt Documentation/RelNotes/1.5.1.adoc
Documentation/RelNotes/1.5.2.1.txt Documentation/RelNotes/1.5.2.1.adoc
Documentation/RelNotes/1.5.2.2.txt Documentation/RelNotes/1.5.2.2.adoc
Documentation/RelNotes/1.5.2.3.txt Documentation/RelNotes/1.5.2.3.adoc
Documentation/RelNotes/1.5.2.4.txt Documentation/RelNotes/1.5.2.4.adoc
Documentation/RelNotes/1.5.2.5.txt Documentation/RelNotes/1.5.2.5.adoc
Documentation/RelNotes/1.5.2.txt Documentation/RelNotes/1.5.2.adoc
Documentation/RelNotes/1.5.3.1.txt Documentation/RelNotes/1.5.3.1.adoc
Documentation/RelNotes/1.5.3.2.txt Documentation/RelNotes/1.5.3.2.adoc
Documentation/RelNotes/1.5.3.3.txt Documentation/RelNotes/1.5.3.3.adoc
Documentation/RelNotes/1.5.3.4.txt Documentation/RelNotes/1.5.3.4.adoc
Documentation/RelNotes/1.5.3.5.txt Documentation/RelNotes/1.5.3.5.adoc
Documentation/RelNotes/1.5.3.6.txt Documentation/RelNotes/1.5.3.6.adoc
Documentation/RelNotes/1.5.3.7.txt Documentation/RelNotes/1.5.3.7.adoc
Documentation/RelNotes/1.5.3.8.txt Documentation/RelNotes/1.5.3.8.adoc
Documentation/RelNotes/1.5.3.txt Documentation/RelNotes/1.5.3.adoc
Documentation/RelNotes/1.5.4.1.txt Documentation/RelNotes/1.5.4.1.adoc
Documentation/RelNotes/1.5.4.2.txt Documentation/RelNotes/1.5.4.2.adoc
Documentation/RelNotes/1.5.4.3.txt Documentation/RelNotes/1.5.4.3.adoc
Documentation/RelNotes/1.5.4.4.txt Documentation/RelNotes/1.5.4.4.adoc
Documentation/RelNotes/1.5.4.5.txt Documentation/RelNotes/1.5.4.5.adoc
Documentation/RelNotes/1.5.4.6.txt Documentation/RelNotes/1.5.4.6.adoc
Documentation/RelNotes/1.5.4.7.txt Documentation/RelNotes/1.5.4.7.adoc
Documentation/RelNotes/1.5.4.txt Documentation/RelNotes/1.5.4.adoc
Documentation/RelNotes/1.5.5.1.txt Documentation/RelNotes/1.5.5.1.adoc
Documentation/RelNotes/1.5.5.2.txt Documentation/RelNotes/1.5.5.2.adoc
Documentation/RelNotes/1.5.5.3.txt Documentation/RelNotes/1.5.5.3.adoc
Documentation/RelNotes/1.5.5.4.txt Documentation/RelNotes/1.5.5.4.adoc
Documentation/RelNotes/1.5.5.5.txt Documentation/RelNotes/1.5.5.5.adoc
Documentation/RelNotes/1.5.5.6.txt Documentation/RelNotes/1.5.5.6.adoc
Documentation/RelNotes/1.5.5.txt Documentation/RelNotes/1.5.5.adoc
Documentation/RelNotes/1.5.6.1.txt Documentation/RelNotes/1.5.6.1.adoc
Documentation/RelNotes/1.5.6.2.txt Documentation/RelNotes/1.5.6.2.adoc
Documentation/RelNotes/1.5.6.3.txt Documentation/RelNotes/1.5.6.3.adoc
Documentation/RelNotes/1.5.6.4.txt Documentation/RelNotes/1.5.6.4.adoc
Documentation/RelNotes/1.5.6.5.txt Documentation/RelNotes/1.5.6.5.adoc
Documentation/RelNotes/1.5.6.6.txt Documentation/RelNotes/1.5.6.6.adoc
Documentation/RelNotes/1.5.6.txt Documentation/RelNotes/1.5.6.adoc
Documentation/RelNotes/1.6.0.1.txt Documentation/RelNotes/1.6.0.1.adoc
Documentation/RelNotes/1.6.0.2.txt Documentation/RelNotes/1.6.0.2.adoc
Documentation/RelNotes/1.6.0.3.txt Documentation/RelNotes/1.6.0.3.adoc
Documentation/RelNotes/1.6.0.4.txt Documentation/RelNotes/1.6.0.4.adoc
Documentation/RelNotes/1.6.0.5.txt Documentation/RelNotes/1.6.0.5.adoc
Documentation/RelNotes/1.6.0.6.txt Documentation/RelNotes/1.6.0.6.adoc
Documentation/RelNotes/1.6.0.txt Documentation/RelNotes/1.6.0.adoc
Documentation/RelNotes/1.6.1.1.txt Documentation/RelNotes/1.6.1.1.adoc
Documentation/RelNotes/1.6.1.2.txt Documentation/RelNotes/1.6.1.2.adoc
Documentation/RelNotes/1.6.1.3.txt Documentation/RelNotes/1.6.1.3.adoc
Documentation/RelNotes/1.6.1.4.txt Documentation/RelNotes/1.6.1.4.adoc
Documentation/RelNotes/1.6.1.txt Documentation/RelNotes/1.6.1.adoc
Documentation/RelNotes/1.6.2.1.txt Documentation/RelNotes/1.6.2.1.adoc
Documentation/RelNotes/1.6.2.2.txt Documentation/RelNotes/1.6.2.2.adoc
Documentation/RelNotes/1.6.2.3.txt Documentation/RelNotes/1.6.2.3.adoc
Documentation/RelNotes/1.6.2.4.txt Documentation/RelNotes/1.6.2.4.adoc
Documentation/RelNotes/1.6.2.5.txt Documentation/RelNotes/1.6.2.5.adoc
Documentation/RelNotes/1.6.2.txt Documentation/RelNotes/1.6.2.adoc
Documentation/RelNotes/1.6.3.1.txt Documentation/RelNotes/1.6.3.1.adoc
Documentation/RelNotes/1.6.3.2.txt Documentation/RelNotes/1.6.3.2.adoc
Documentation/RelNotes/1.6.3.3.txt Documentation/RelNotes/1.6.3.3.adoc
Documentation/RelNotes/1.6.3.4.txt Documentation/RelNotes/1.6.3.4.adoc
Documentation/RelNotes/1.6.3.txt Documentation/RelNotes/1.6.3.adoc
Documentation/RelNotes/1.6.4.1.txt Documentation/RelNotes/1.6.4.1.adoc
Documentation/RelNotes/1.6.4.2.txt Documentation/RelNotes/1.6.4.2.adoc
Documentation/RelNotes/1.6.4.3.txt Documentation/RelNotes/1.6.4.3.adoc
Documentation/RelNotes/1.6.4.4.txt Documentation/RelNotes/1.6.4.4.adoc
Documentation/RelNotes/1.6.4.5.txt Documentation/RelNotes/1.6.4.5.adoc
Documentation/RelNotes/1.6.4.txt Documentation/RelNotes/1.6.4.adoc
Documentation/RelNotes/1.6.5.1.txt Documentation/RelNotes/1.6.5.1.adoc
Documentation/RelNotes/1.6.5.2.txt Documentation/RelNotes/1.6.5.2.adoc
Documentation/RelNotes/1.6.5.3.txt Documentation/RelNotes/1.6.5.3.adoc
Documentation/RelNotes/1.6.5.4.txt Documentation/RelNotes/1.6.5.4.adoc
Documentation/RelNotes/1.6.5.5.txt Documentation/RelNotes/1.6.5.5.adoc
Documentation/RelNotes/1.6.5.6.txt Documentation/RelNotes/1.6.5.6.adoc
Documentation/RelNotes/1.6.5.7.txt Documentation/RelNotes/1.6.5.7.adoc
Documentation/RelNotes/1.6.5.8.txt Documentation/RelNotes/1.6.5.8.adoc
Documentation/RelNotes/1.6.5.9.txt Documentation/RelNotes/1.6.5.9.adoc
Documentation/RelNotes/1.6.5.txt Documentation/RelNotes/1.6.5.adoc
Documentation/RelNotes/1.6.6.1.txt Documentation/RelNotes/1.6.6.1.adoc
Documentation/RelNotes/1.6.6.2.txt Documentation/RelNotes/1.6.6.2.adoc
Documentation/RelNotes/1.6.6.3.txt Documentation/RelNotes/1.6.6.3.adoc
Documentation/RelNotes/1.6.6.txt Documentation/RelNotes/1.6.6.adoc
Documentation/RelNotes/1.7.0.1.txt Documentation/RelNotes/1.7.0.1.adoc
Documentation/RelNotes/1.7.0.2.txt Documentation/RelNotes/1.7.0.2.adoc
Documentation/RelNotes/1.7.0.3.txt Documentation/RelNotes/1.7.0.3.adoc
Documentation/RelNotes/1.7.0.4.txt Documentation/RelNotes/1.7.0.4.adoc
Documentation/RelNotes/1.7.0.5.txt Documentation/RelNotes/1.7.0.5.adoc
Documentation/RelNotes/1.7.0.6.txt Documentation/RelNotes/1.7.0.6.adoc
Documentation/RelNotes/1.7.0.7.txt Documentation/RelNotes/1.7.0.7.adoc
Documentation/RelNotes/1.7.0.8.txt Documentation/RelNotes/1.7.0.8.adoc
Documentation/RelNotes/1.7.0.9.txt Documentation/RelNotes/1.7.0.9.adoc
Documentation/RelNotes/1.7.0.txt Documentation/RelNotes/1.7.0.adoc
Documentation/RelNotes/1.7.1.1.txt Documentation/RelNotes/1.7.1.1.adoc
Documentation/RelNotes/1.7.1.2.txt Documentation/RelNotes/1.7.1.2.adoc
Documentation/RelNotes/1.7.1.3.txt Documentation/RelNotes/1.7.1.3.adoc
Documentation/RelNotes/1.7.1.4.txt Documentation/RelNotes/1.7.1.4.adoc
Documentation/RelNotes/1.7.1.txt Documentation/RelNotes/1.7.1.adoc
Documentation/RelNotes/1.7.10.1.txt Documentation/RelNotes/1.7.10.1.adoc
Documentation/RelNotes/1.7.10.2.txt Documentation/RelNotes/1.7.10.2.adoc
Documentation/RelNotes/1.7.10.3.txt Documentation/RelNotes/1.7.10.3.adoc
Documentation/RelNotes/1.7.10.4.txt Documentation/RelNotes/1.7.10.4.adoc
Documentation/RelNotes/1.7.10.5.txt Documentation/RelNotes/1.7.10.5.adoc
Documentation/RelNotes/1.7.10.txt Documentation/RelNotes/1.7.10.adoc
Documentation/RelNotes/1.7.11.1.txt Documentation/RelNotes/1.7.11.1.adoc
Documentation/RelNotes/1.7.11.2.txt Documentation/RelNotes/1.7.11.2.adoc
Documentation/RelNotes/1.7.11.3.txt Documentation/RelNotes/1.7.11.3.adoc
Documentation/RelNotes/1.7.11.4.txt Documentation/RelNotes/1.7.11.4.adoc
Documentation/RelNotes/1.7.11.5.txt Documentation/RelNotes/1.7.11.5.adoc
Documentation/RelNotes/1.7.11.6.txt Documentation/RelNotes/1.7.11.6.adoc
Documentation/RelNotes/1.7.11.7.txt Documentation/RelNotes/1.7.11.7.adoc
Documentation/RelNotes/1.7.11.txt Documentation/RelNotes/1.7.11.adoc
Documentation/RelNotes/1.7.12.1.txt Documentation/RelNotes/1.7.12.1.adoc
Documentation/RelNotes/1.7.12.2.txt Documentation/RelNotes/1.7.12.2.adoc
Documentation/RelNotes/1.7.12.3.txt Documentation/RelNotes/1.7.12.3.adoc
Documentation/RelNotes/1.7.12.4.txt Documentation/RelNotes/1.7.12.4.adoc
Documentation/RelNotes/1.7.12.txt Documentation/RelNotes/1.7.12.adoc
Documentation/RelNotes/1.7.2.1.txt Documentation/RelNotes/1.7.2.1.adoc
Documentation/RelNotes/1.7.2.2.txt Documentation/RelNotes/1.7.2.2.adoc
Documentation/RelNotes/1.7.2.3.txt Documentation/RelNotes/1.7.2.3.adoc
Documentation/RelNotes/1.7.2.4.txt Documentation/RelNotes/1.7.2.4.adoc
Documentation/RelNotes/1.7.2.5.txt Documentation/RelNotes/1.7.2.5.adoc
Documentation/RelNotes/1.7.2.txt Documentation/RelNotes/1.7.2.adoc
Documentation/RelNotes/1.7.3.1.txt Documentation/RelNotes/1.7.3.1.adoc
Documentation/RelNotes/1.7.3.2.txt Documentation/RelNotes/1.7.3.2.adoc
Documentation/RelNotes/1.7.3.3.txt Documentation/RelNotes/1.7.3.3.adoc
Documentation/RelNotes/1.7.3.4.txt Documentation/RelNotes/1.7.3.4.adoc
Documentation/RelNotes/1.7.3.5.txt Documentation/RelNotes/1.7.3.5.adoc
Documentation/RelNotes/1.7.3.txt Documentation/RelNotes/1.7.3.adoc
Documentation/RelNotes/1.7.4.1.txt Documentation/RelNotes/1.7.4.1.adoc
Documentation/RelNotes/1.7.4.2.txt Documentation/RelNotes/1.7.4.2.adoc
Documentation/RelNotes/1.7.4.3.txt Documentation/RelNotes/1.7.4.3.adoc
Documentation/RelNotes/1.7.4.4.txt Documentation/RelNotes/1.7.4.4.adoc
Documentation/RelNotes/1.7.4.5.txt Documentation/RelNotes/1.7.4.5.adoc
Documentation/RelNotes/1.7.4.txt Documentation/RelNotes/1.7.4.adoc
Documentation/RelNotes/1.7.5.1.txt Documentation/RelNotes/1.7.5.1.adoc
Documentation/RelNotes/1.7.5.2.txt Documentation/RelNotes/1.7.5.2.adoc
Documentation/RelNotes/1.7.5.3.txt Documentation/RelNotes/1.7.5.3.adoc
Documentation/RelNotes/1.7.5.4.txt Documentation/RelNotes/1.7.5.4.adoc
Documentation/RelNotes/1.7.5.txt Documentation/RelNotes/1.7.5.adoc
Documentation/RelNotes/1.7.6.1.txt Documentation/RelNotes/1.7.6.1.adoc
Documentation/RelNotes/1.7.6.2.txt Documentation/RelNotes/1.7.6.2.adoc
Documentation/RelNotes/1.7.6.3.txt Documentation/RelNotes/1.7.6.3.adoc
Documentation/RelNotes/1.7.6.4.txt Documentation/RelNotes/1.7.6.4.adoc
Documentation/RelNotes/1.7.6.5.txt Documentation/RelNotes/1.7.6.5.adoc
Documentation/RelNotes/1.7.6.6.txt Documentation/RelNotes/1.7.6.6.adoc
Documentation/RelNotes/1.7.6.txt Documentation/RelNotes/1.7.6.adoc
Documentation/RelNotes/1.7.7.1.txt Documentation/RelNotes/1.7.7.1.adoc
Documentation/RelNotes/1.7.7.2.txt Documentation/RelNotes/1.7.7.2.adoc
Documentation/RelNotes/1.7.7.3.txt Documentation/RelNotes/1.7.7.3.adoc
Documentation/RelNotes/1.7.7.4.txt Documentation/RelNotes/1.7.7.4.adoc
Documentation/RelNotes/1.7.7.5.txt Documentation/RelNotes/1.7.7.5.adoc
Documentation/RelNotes/1.7.7.6.txt Documentation/RelNotes/1.7.7.6.adoc
Documentation/RelNotes/1.7.7.7.txt Documentation/RelNotes/1.7.7.7.adoc
Documentation/RelNotes/1.7.7.txt Documentation/RelNotes/1.7.7.adoc
Documentation/RelNotes/1.7.8.1.txt Documentation/RelNotes/1.7.8.1.adoc
Documentation/RelNotes/1.7.8.2.txt Documentation/RelNotes/1.7.8.2.adoc
Documentation/RelNotes/1.7.8.3.txt Documentation/RelNotes/1.7.8.3.adoc
Documentation/RelNotes/1.7.8.4.txt Documentation/RelNotes/1.7.8.4.adoc
Documentation/RelNotes/1.7.8.5.txt Documentation/RelNotes/1.7.8.5.adoc
Documentation/RelNotes/1.7.8.6.txt Documentation/RelNotes/1.7.8.6.adoc
Documentation/RelNotes/1.7.8.txt Documentation/RelNotes/1.7.8.adoc
Documentation/RelNotes/1.7.9.1.txt Documentation/RelNotes/1.7.9.1.adoc
Documentation/RelNotes/1.7.9.2.txt Documentation/RelNotes/1.7.9.2.adoc
Documentation/RelNotes/1.7.9.3.txt Documentation/RelNotes/1.7.9.3.adoc
Documentation/RelNotes/1.7.9.4.txt Documentation/RelNotes/1.7.9.4.adoc
Documentation/RelNotes/1.7.9.5.txt Documentation/RelNotes/1.7.9.5.adoc
Documentation/RelNotes/1.7.9.6.txt Documentation/RelNotes/1.7.9.6.adoc
Documentation/RelNotes/1.7.9.7.txt Documentation/RelNotes/1.7.9.7.adoc
Documentation/RelNotes/1.7.9.txt Documentation/RelNotes/1.7.9.adoc
Documentation/RelNotes/1.8.0.1.txt Documentation/RelNotes/1.8.0.1.adoc
Documentation/RelNotes/1.8.0.2.txt Documentation/RelNotes/1.8.0.2.adoc
Documentation/RelNotes/1.8.0.3.txt Documentation/RelNotes/1.8.0.3.adoc
Documentation/RelNotes/1.8.0.txt Documentation/RelNotes/1.8.0.adoc
Documentation/RelNotes/1.8.1.1.txt Documentation/RelNotes/1.8.1.1.adoc
Documentation/RelNotes/1.8.1.2.txt Documentation/RelNotes/1.8.1.2.adoc
Documentation/RelNotes/1.8.1.3.txt Documentation/RelNotes/1.8.1.3.adoc
Documentation/RelNotes/1.8.1.4.txt Documentation/RelNotes/1.8.1.4.adoc
Documentation/RelNotes/1.8.1.5.txt Documentation/RelNotes/1.8.1.5.adoc
Documentation/RelNotes/1.8.1.6.txt Documentation/RelNotes/1.8.1.6.adoc
Documentation/RelNotes/1.8.1.txt Documentation/RelNotes/1.8.1.adoc
Documentation/RelNotes/1.8.2.1.txt Documentation/RelNotes/1.8.2.1.adoc
Documentation/RelNotes/1.8.2.2.txt Documentation/RelNotes/1.8.2.2.adoc
Documentation/RelNotes/1.8.2.3.txt Documentation/RelNotes/1.8.2.3.adoc
Documentation/RelNotes/1.8.2.txt Documentation/RelNotes/1.8.2.adoc
Documentation/RelNotes/1.8.3.1.txt Documentation/RelNotes/1.8.3.1.adoc
Documentation/RelNotes/1.8.3.2.txt Documentation/RelNotes/1.8.3.2.adoc
Documentation/RelNotes/1.8.3.3.txt Documentation/RelNotes/1.8.3.3.adoc
Documentation/RelNotes/1.8.3.4.txt Documentation/RelNotes/1.8.3.4.adoc
Documentation/RelNotes/1.8.3.txt Documentation/RelNotes/1.8.3.adoc
Documentation/RelNotes/1.8.4.1.txt Documentation/RelNotes/1.8.4.1.adoc
Documentation/RelNotes/1.8.4.2.txt Documentation/RelNotes/1.8.4.2.adoc
Documentation/RelNotes/1.8.4.3.txt Documentation/RelNotes/1.8.4.3.adoc
Documentation/RelNotes/1.8.4.4.txt Documentation/RelNotes/1.8.4.4.adoc
Documentation/RelNotes/1.8.4.5.txt Documentation/RelNotes/1.8.4.5.adoc
Documentation/RelNotes/1.8.4.txt Documentation/RelNotes/1.8.4.adoc
Documentation/RelNotes/1.8.5.1.txt Documentation/RelNotes/1.8.5.1.adoc
Documentation/RelNotes/1.8.5.2.txt Documentation/RelNotes/1.8.5.2.adoc
Documentation/RelNotes/1.8.5.3.txt Documentation/RelNotes/1.8.5.3.adoc
Documentation/RelNotes/1.8.5.4.txt Documentation/RelNotes/1.8.5.4.adoc
Documentation/RelNotes/1.8.5.5.txt Documentation/RelNotes/1.8.5.5.adoc
Documentation/RelNotes/1.8.5.6.txt Documentation/RelNotes/1.8.5.6.adoc
Documentation/RelNotes/1.8.5.txt Documentation/RelNotes/1.8.5.adoc
Documentation/RelNotes/1.9.0.txt Documentation/RelNotes/1.9.0.adoc
Documentation/RelNotes/1.9.1.txt Documentation/RelNotes/1.9.1.adoc
Documentation/RelNotes/1.9.2.txt Documentation/RelNotes/1.9.2.adoc
Documentation/RelNotes/1.9.3.txt Documentation/RelNotes/1.9.3.adoc
Documentation/RelNotes/1.9.4.txt Documentation/RelNotes/1.9.4.adoc
Documentation/RelNotes/1.9.5.txt Documentation/RelNotes/1.9.5.adoc
Documentation/RelNotes/2.0.0.txt Documentation/RelNotes/2.0.0.adoc
Documentation/RelNotes/2.0.1.txt Documentation/RelNotes/2.0.1.adoc
Documentation/RelNotes/2.0.2.txt Documentation/RelNotes/2.0.2.adoc
Documentation/RelNotes/2.0.3.txt Documentation/RelNotes/2.0.3.adoc
Documentation/RelNotes/2.0.4.txt Documentation/RelNotes/2.0.4.adoc
Documentation/RelNotes/2.0.5.txt Documentation/RelNotes/2.0.5.adoc
Documentation/RelNotes/2.1.0.txt Documentation/RelNotes/2.1.0.adoc
Documentation/RelNotes/2.1.1.txt Documentation/RelNotes/2.1.1.adoc
Documentation/RelNotes/2.1.2.txt Documentation/RelNotes/2.1.2.adoc
Documentation/RelNotes/2.1.3.txt Documentation/RelNotes/2.1.3.adoc
Documentation/RelNotes/2.1.4.txt Documentation/RelNotes/2.1.4.adoc
Documentation/RelNotes/2.10.0.txt Documentation/RelNotes/2.10.0.adoc
Documentation/RelNotes/2.10.1.txt Documentation/RelNotes/2.10.1.adoc
Documentation/RelNotes/2.10.2.txt Documentation/RelNotes/2.10.2.adoc
Documentation/RelNotes/2.10.3.txt Documentation/RelNotes/2.10.3.adoc
Documentation/RelNotes/2.10.4.txt Documentation/RelNotes/2.10.4.adoc
Documentation/RelNotes/2.10.5.txt Documentation/RelNotes/2.10.5.adoc
Documentation/RelNotes/2.11.0.txt Documentation/RelNotes/2.11.0.adoc
Documentation/RelNotes/2.11.1.txt Documentation/RelNotes/2.11.1.adoc
Documentation/RelNotes/2.11.2.txt Documentation/RelNotes/2.11.2.adoc
Documentation/RelNotes/2.11.3.txt Documentation/RelNotes/2.11.3.adoc
Documentation/RelNotes/2.11.4.txt Documentation/RelNotes/2.11.4.adoc
Documentation/RelNotes/2.12.0.txt Documentation/RelNotes/2.12.0.adoc
Documentation/RelNotes/2.12.1.txt Documentation/RelNotes/2.12.1.adoc
Documentation/RelNotes/2.12.2.txt Documentation/RelNotes/2.12.2.adoc
Documentation/RelNotes/2.12.3.txt Documentation/RelNotes/2.12.3.adoc
Documentation/RelNotes/2.12.4.txt Documentation/RelNotes/2.12.4.adoc
Documentation/RelNotes/2.12.5.txt Documentation/RelNotes/2.12.5.adoc
Documentation/RelNotes/2.13.0.txt Documentation/RelNotes/2.13.0.adoc
Documentation/RelNotes/2.13.1.txt Documentation/RelNotes/2.13.1.adoc
Documentation/RelNotes/2.13.2.txt Documentation/RelNotes/2.13.2.adoc
Documentation/RelNotes/2.13.3.txt Documentation/RelNotes/2.13.3.adoc
Documentation/RelNotes/2.13.4.txt Documentation/RelNotes/2.13.4.adoc
Documentation/RelNotes/2.13.5.txt Documentation/RelNotes/2.13.5.adoc
Documentation/RelNotes/2.13.6.txt Documentation/RelNotes/2.13.6.adoc
Documentation/RelNotes/2.13.7.txt Documentation/RelNotes/2.13.7.adoc
Documentation/RelNotes/2.14.0.txt Documentation/RelNotes/2.14.0.adoc
Documentation/RelNotes/2.14.1.txt Documentation/RelNotes/2.14.1.adoc
Documentation/RelNotes/2.14.2.txt Documentation/RelNotes/2.14.2.adoc
Documentation/RelNotes/2.14.3.txt Documentation/RelNotes/2.14.3.adoc
Documentation/RelNotes/2.14.4.txt Documentation/RelNotes/2.14.4.adoc
Documentation/RelNotes/2.14.5.txt Documentation/RelNotes/2.14.5.adoc
Documentation/RelNotes/2.14.6.txt Documentation/RelNotes/2.14.6.adoc
Documentation/RelNotes/2.15.0.txt Documentation/RelNotes/2.15.0.adoc
Documentation/RelNotes/2.15.1.txt Documentation/RelNotes/2.15.1.adoc
Documentation/RelNotes/2.15.2.txt Documentation/RelNotes/2.15.2.adoc
Documentation/RelNotes/2.15.3.txt Documentation/RelNotes/2.15.3.adoc
Documentation/RelNotes/2.15.4.txt Documentation/RelNotes/2.15.4.adoc
Documentation/RelNotes/2.16.0.txt Documentation/RelNotes/2.16.0.adoc
Documentation/RelNotes/2.16.1.txt Documentation/RelNotes/2.16.1.adoc
Documentation/RelNotes/2.16.2.txt Documentation/RelNotes/2.16.2.adoc
Documentation/RelNotes/2.16.3.txt Documentation/RelNotes/2.16.3.adoc
Documentation/RelNotes/2.16.4.txt Documentation/RelNotes/2.16.4.adoc
Documentation/RelNotes/2.16.5.txt Documentation/RelNotes/2.16.5.adoc
Documentation/RelNotes/2.16.6.txt Documentation/RelNotes/2.16.6.adoc
Documentation/RelNotes/2.17.0.txt Documentation/RelNotes/2.17.0.adoc
Documentation/RelNotes/2.17.1.txt Documentation/RelNotes/2.17.1.adoc
Documentation/RelNotes/2.17.2.txt Documentation/RelNotes/2.17.2.adoc
Documentation/RelNotes/2.17.3.txt Documentation/RelNotes/2.17.3.adoc
Documentation/RelNotes/2.17.4.txt Documentation/RelNotes/2.17.4.adoc
Documentation/RelNotes/2.17.5.txt Documentation/RelNotes/2.17.5.adoc
Documentation/RelNotes/2.17.6.txt Documentation/RelNotes/2.17.6.adoc
Documentation/RelNotes/2.18.0.txt Documentation/RelNotes/2.18.0.adoc
Documentation/RelNotes/2.18.1.txt Documentation/RelNotes/2.18.1.adoc
Documentation/RelNotes/2.18.2.txt Documentation/RelNotes/2.18.2.adoc
Documentation/RelNotes/2.18.3.txt Documentation/RelNotes/2.18.3.adoc
Documentation/RelNotes/2.18.4.txt Documentation/RelNotes/2.18.4.adoc
Documentation/RelNotes/2.18.5.txt Documentation/RelNotes/2.18.5.adoc
Documentation/RelNotes/2.19.0.txt Documentation/RelNotes/2.19.0.adoc
Documentation/RelNotes/2.19.1.txt Documentation/RelNotes/2.19.1.adoc
Documentation/RelNotes/2.19.2.txt Documentation/RelNotes/2.19.2.adoc
Documentation/RelNotes/2.19.3.txt Documentation/RelNotes/2.19.3.adoc
Documentation/RelNotes/2.19.4.txt Documentation/RelNotes/2.19.4.adoc
Documentation/RelNotes/2.19.5.txt Documentation/RelNotes/2.19.5.adoc
Documentation/RelNotes/2.19.6.txt Documentation/RelNotes/2.19.6.adoc
Documentation/RelNotes/2.2.0.txt Documentation/RelNotes/2.2.0.adoc
Documentation/RelNotes/2.2.1.txt Documentation/RelNotes/2.2.1.adoc
Documentation/RelNotes/2.2.2.txt Documentation/RelNotes/2.2.2.adoc
Documentation/RelNotes/2.2.3.txt Documentation/RelNotes/2.2.3.adoc
Documentation/RelNotes/2.20.0.txt Documentation/RelNotes/2.20.0.adoc
Documentation/RelNotes/2.20.1.txt Documentation/RelNotes/2.20.1.adoc
Documentation/RelNotes/2.20.2.txt Documentation/RelNotes/2.20.2.adoc
Documentation/RelNotes/2.20.3.txt Documentation/RelNotes/2.20.3.adoc
Documentation/RelNotes/2.20.4.txt Documentation/RelNotes/2.20.4.adoc
Documentation/RelNotes/2.20.5.txt Documentation/RelNotes/2.20.5.adoc
Documentation/RelNotes/2.21.0.txt Documentation/RelNotes/2.21.0.adoc
Documentation/RelNotes/2.21.1.txt Documentation/RelNotes/2.21.1.adoc
Documentation/RelNotes/2.21.2.txt Documentation/RelNotes/2.21.2.adoc
Documentation/RelNotes/2.21.3.txt Documentation/RelNotes/2.21.3.adoc
Documentation/RelNotes/2.21.4.txt Documentation/RelNotes/2.21.4.adoc
Documentation/RelNotes/2.22.0.txt Documentation/RelNotes/2.22.0.adoc
Documentation/RelNotes/2.22.1.txt Documentation/RelNotes/2.22.1.adoc
Documentation/RelNotes/2.22.2.txt Documentation/RelNotes/2.22.2.adoc
Documentation/RelNotes/2.22.3.txt Documentation/RelNotes/2.22.3.adoc
Documentation/RelNotes/2.22.4.txt Documentation/RelNotes/2.22.4.adoc
Documentation/RelNotes/2.22.5.txt Documentation/RelNotes/2.22.5.adoc
Documentation/RelNotes/2.23.0.txt Documentation/RelNotes/2.23.0.adoc
Documentation/RelNotes/2.23.1.txt Documentation/RelNotes/2.23.1.adoc
Documentation/RelNotes/2.23.2.txt Documentation/RelNotes/2.23.2.adoc
Documentation/RelNotes/2.23.3.txt Documentation/RelNotes/2.23.3.adoc
Documentation/RelNotes/2.23.4.txt Documentation/RelNotes/2.23.4.adoc
Documentation/RelNotes/2.24.0.txt Documentation/RelNotes/2.24.0.adoc
Documentation/RelNotes/2.24.1.txt Documentation/RelNotes/2.24.1.adoc
Documentation/RelNotes/2.24.2.txt Documentation/RelNotes/2.24.2.adoc
Documentation/RelNotes/2.24.3.txt Documentation/RelNotes/2.24.3.adoc
Documentation/RelNotes/2.24.4.txt Documentation/RelNotes/2.24.4.adoc
Documentation/RelNotes/2.25.0.txt Documentation/RelNotes/2.25.0.adoc
Documentation/RelNotes/2.25.1.txt Documentation/RelNotes/2.25.1.adoc
Documentation/RelNotes/2.25.2.txt Documentation/RelNotes/2.25.2.adoc
Documentation/RelNotes/2.25.3.txt Documentation/RelNotes/2.25.3.adoc
Documentation/RelNotes/2.25.4.txt Documentation/RelNotes/2.25.4.adoc
Documentation/RelNotes/2.25.5.txt Documentation/RelNotes/2.25.5.adoc
Documentation/RelNotes/2.26.0.txt Documentation/RelNotes/2.26.0.adoc
Documentation/RelNotes/2.26.1.txt Documentation/RelNotes/2.26.1.adoc
Documentation/RelNotes/2.26.2.txt Documentation/RelNotes/2.26.2.adoc
Documentation/RelNotes/2.26.3.txt Documentation/RelNotes/2.26.3.adoc
Documentation/RelNotes/2.27.0.txt Documentation/RelNotes/2.27.0.adoc
Documentation/RelNotes/2.27.1.txt Documentation/RelNotes/2.27.1.adoc
Documentation/RelNotes/2.28.0.txt Documentation/RelNotes/2.28.0.adoc
Documentation/RelNotes/2.28.1.txt Documentation/RelNotes/2.28.1.adoc
Documentation/RelNotes/2.29.0.txt Documentation/RelNotes/2.29.0.adoc
Documentation/RelNotes/2.29.1.txt Documentation/RelNotes/2.29.1.adoc
Documentation/RelNotes/2.29.2.txt Documentation/RelNotes/2.29.2.adoc
Documentation/RelNotes/2.29.3.txt Documentation/RelNotes/2.29.3.adoc
Documentation/RelNotes/2.3.0.txt Documentation/RelNotes/2.3.0.adoc
Documentation/RelNotes/2.3.1.txt Documentation/RelNotes/2.3.1.adoc
Documentation/RelNotes/2.3.10.txt Documentation/RelNotes/2.3.10.adoc
Documentation/RelNotes/2.3.2.txt Documentation/RelNotes/2.3.2.adoc
Documentation/RelNotes/2.3.3.txt Documentation/RelNotes/2.3.3.adoc
Documentation/RelNotes/2.3.4.txt Documentation/RelNotes/2.3.4.adoc
Documentation/RelNotes/2.3.5.txt Documentation/RelNotes/2.3.5.adoc
Documentation/RelNotes/2.3.6.txt Documentation/RelNotes/2.3.6.adoc
Documentation/RelNotes/2.3.7.txt Documentation/RelNotes/2.3.7.adoc
Documentation/RelNotes/2.3.8.txt Documentation/RelNotes/2.3.8.adoc
Documentation/RelNotes/2.3.9.txt Documentation/RelNotes/2.3.9.adoc
Documentation/RelNotes/2.30.0.txt Documentation/RelNotes/2.30.0.adoc
Documentation/RelNotes/2.30.1.txt Documentation/RelNotes/2.30.1.adoc
Documentation/RelNotes/2.30.2.txt Documentation/RelNotes/2.30.2.adoc
Documentation/RelNotes/2.30.3.txt Documentation/RelNotes/2.30.3.adoc
Documentation/RelNotes/2.30.4.txt Documentation/RelNotes/2.30.4.adoc
Documentation/RelNotes/2.30.5.txt Documentation/RelNotes/2.30.5.adoc
Documentation/RelNotes/2.30.6.txt Documentation/RelNotes/2.30.6.adoc
Documentation/RelNotes/2.30.7.txt Documentation/RelNotes/2.30.7.adoc
Documentation/RelNotes/2.30.8.txt Documentation/RelNotes/2.30.8.adoc
Documentation/RelNotes/2.30.9.txt Documentation/RelNotes/2.30.9.adoc
Documentation/RelNotes/2.31.0.txt Documentation/RelNotes/2.31.0.adoc
Documentation/RelNotes/2.31.1.txt Documentation/RelNotes/2.31.1.adoc
Documentation/RelNotes/2.31.2.txt Documentation/RelNotes/2.31.2.adoc
Documentation/RelNotes/2.31.3.txt Documentation/RelNotes/2.31.3.adoc
Documentation/RelNotes/2.31.4.txt Documentation/RelNotes/2.31.4.adoc
Documentation/RelNotes/2.31.5.txt Documentation/RelNotes/2.31.5.adoc
Documentation/RelNotes/2.31.6.txt Documentation/RelNotes/2.31.6.adoc
Documentation/RelNotes/2.31.7.txt Documentation/RelNotes/2.31.7.adoc
Documentation/RelNotes/2.31.8.txt Documentation/RelNotes/2.31.8.adoc
Documentation/RelNotes/2.32.0.txt Documentation/RelNotes/2.32.0.adoc
Documentation/RelNotes/2.32.1.txt Documentation/RelNotes/2.32.1.adoc
Documentation/RelNotes/2.32.2.txt Documentation/RelNotes/2.32.2.adoc
Documentation/RelNotes/2.32.3.txt Documentation/RelNotes/2.32.3.adoc
Documentation/RelNotes/2.32.4.txt Documentation/RelNotes/2.32.4.adoc
Documentation/RelNotes/2.32.5.txt Documentation/RelNotes/2.32.5.adoc
Documentation/RelNotes/2.32.6.txt Documentation/RelNotes/2.32.6.adoc
Documentation/RelNotes/2.32.7.txt Documentation/RelNotes/2.32.7.adoc
Documentation/RelNotes/2.33.0.txt Documentation/RelNotes/2.33.0.adoc
Documentation/RelNotes/2.33.1.txt Documentation/RelNotes/2.33.1.adoc
Documentation/RelNotes/2.33.2.txt Documentation/RelNotes/2.33.2.adoc
Documentation/RelNotes/2.33.3.txt Documentation/RelNotes/2.33.3.adoc
Documentation/RelNotes/2.33.4.txt Documentation/RelNotes/2.33.4.adoc
Documentation/RelNotes/2.33.5.txt Documentation/RelNotes/2.33.5.adoc
Documentation/RelNotes/2.33.6.txt Documentation/RelNotes/2.33.6.adoc
Documentation/RelNotes/2.33.7.txt Documentation/RelNotes/2.33.7.adoc
Documentation/RelNotes/2.33.8.txt Documentation/RelNotes/2.33.8.adoc
Documentation/RelNotes/2.34.0.txt Documentation/RelNotes/2.34.0.adoc
Documentation/RelNotes/2.34.1.txt Documentation/RelNotes/2.34.1.adoc
Documentation/RelNotes/2.34.2.txt Documentation/RelNotes/2.34.2.adoc
Documentation/RelNotes/2.34.3.txt Documentation/RelNotes/2.34.3.adoc
Documentation/RelNotes/2.34.4.txt Documentation/RelNotes/2.34.4.adoc
Documentation/RelNotes/2.34.5.txt Documentation/RelNotes/2.34.5.adoc
Documentation/RelNotes/2.34.6.txt Documentation/RelNotes/2.34.6.adoc
Documentation/RelNotes/2.34.7.txt Documentation/RelNotes/2.34.7.adoc
Documentation/RelNotes/2.34.8.txt Documentation/RelNotes/2.34.8.adoc
Documentation/RelNotes/2.35.0.txt Documentation/RelNotes/2.35.0.adoc
Documentation/RelNotes/2.35.1.txt Documentation/RelNotes/2.35.1.adoc
Documentation/RelNotes/2.35.2.txt Documentation/RelNotes/2.35.2.adoc
Documentation/RelNotes/2.35.3.txt Documentation/RelNotes/2.35.3.adoc
Documentation/RelNotes/2.35.4.txt Documentation/RelNotes/2.35.4.adoc
Documentation/RelNotes/2.35.5.txt Documentation/RelNotes/2.35.5.adoc
Documentation/RelNotes/2.35.6.txt Documentation/RelNotes/2.35.6.adoc
Documentation/RelNotes/2.35.7.txt Documentation/RelNotes/2.35.7.adoc
Documentation/RelNotes/2.35.8.txt Documentation/RelNotes/2.35.8.adoc
Documentation/RelNotes/2.36.0.txt Documentation/RelNotes/2.36.0.adoc
Documentation/RelNotes/2.36.1.txt Documentation/RelNotes/2.36.1.adoc
Documentation/RelNotes/2.36.2.txt Documentation/RelNotes/2.36.2.adoc
Documentation/RelNotes/2.36.3.txt Documentation/RelNotes/2.36.3.adoc
Documentation/RelNotes/2.36.4.txt Documentation/RelNotes/2.36.4.adoc
Documentation/RelNotes/2.36.5.txt Documentation/RelNotes/2.36.5.adoc
Documentation/RelNotes/2.36.6.txt Documentation/RelNotes/2.36.6.adoc
Documentation/RelNotes/2.37.0.txt Documentation/RelNotes/2.37.0.adoc
Documentation/RelNotes/2.37.1.txt Documentation/RelNotes/2.37.1.adoc
Documentation/RelNotes/2.37.2.txt Documentation/RelNotes/2.37.2.adoc
Documentation/RelNotes/2.37.3.txt Documentation/RelNotes/2.37.3.adoc
Documentation/RelNotes/2.37.4.txt Documentation/RelNotes/2.37.4.adoc
Documentation/RelNotes/2.37.5.txt Documentation/RelNotes/2.37.5.adoc
Documentation/RelNotes/2.37.6.txt Documentation/RelNotes/2.37.6.adoc
Documentation/RelNotes/2.37.7.txt Documentation/RelNotes/2.37.7.adoc
Documentation/RelNotes/2.38.0.txt Documentation/RelNotes/2.38.0.adoc
Documentation/RelNotes/2.38.1.txt Documentation/RelNotes/2.38.1.adoc
Documentation/RelNotes/2.38.2.txt Documentation/RelNotes/2.38.2.adoc
Documentation/RelNotes/2.38.3.txt Documentation/RelNotes/2.38.3.adoc
Documentation/RelNotes/2.38.4.txt Documentation/RelNotes/2.38.4.adoc
Documentation/RelNotes/2.38.5.txt Documentation/RelNotes/2.38.5.adoc
Documentation/RelNotes/2.39.0.txt Documentation/RelNotes/2.39.0.adoc
Documentation/RelNotes/2.39.1.txt Documentation/RelNotes/2.39.1.adoc
Documentation/RelNotes/2.39.2.txt Documentation/RelNotes/2.39.2.adoc
Documentation/RelNotes/2.39.3.txt Documentation/RelNotes/2.39.3.adoc
Documentation/RelNotes/2.39.4.txt Documentation/RelNotes/2.39.4.adoc
Documentation/RelNotes/2.39.5.txt Documentation/RelNotes/2.39.5.adoc
Documentation/RelNotes/2.4.0.txt Documentation/RelNotes/2.4.0.adoc
Documentation/RelNotes/2.4.1.txt Documentation/RelNotes/2.4.1.adoc
Documentation/RelNotes/2.4.10.txt Documentation/RelNotes/2.4.10.adoc
Documentation/RelNotes/2.4.11.txt Documentation/RelNotes/2.4.11.adoc
Documentation/RelNotes/2.4.12.txt Documentation/RelNotes/2.4.12.adoc
Documentation/RelNotes/2.4.2.txt Documentation/RelNotes/2.4.2.adoc
Documentation/RelNotes/2.4.3.txt Documentation/RelNotes/2.4.3.adoc
Documentation/RelNotes/2.4.4.txt Documentation/RelNotes/2.4.4.adoc
Documentation/RelNotes/2.4.5.txt Documentation/RelNotes/2.4.5.adoc
Documentation/RelNotes/2.4.6.txt Documentation/RelNotes/2.4.6.adoc
Documentation/RelNotes/2.4.7.txt Documentation/RelNotes/2.4.7.adoc
Documentation/RelNotes/2.4.8.txt Documentation/RelNotes/2.4.8.adoc
Documentation/RelNotes/2.4.9.txt Documentation/RelNotes/2.4.9.adoc
Documentation/RelNotes/2.40.0.txt Documentation/RelNotes/2.40.0.adoc
Documentation/RelNotes/2.40.1.txt Documentation/RelNotes/2.40.1.adoc
Documentation/RelNotes/2.40.2.txt Documentation/RelNotes/2.40.2.adoc
Documentation/RelNotes/2.40.3.txt Documentation/RelNotes/2.40.3.adoc
Documentation/RelNotes/2.40.4.txt Documentation/RelNotes/2.40.4.adoc
Documentation/RelNotes/2.41.0.txt Documentation/RelNotes/2.41.0.adoc
Documentation/RelNotes/2.41.1.txt Documentation/RelNotes/2.41.1.adoc
Documentation/RelNotes/2.41.2.txt Documentation/RelNotes/2.41.2.adoc
Documentation/RelNotes/2.41.3.txt Documentation/RelNotes/2.41.3.adoc
Documentation/RelNotes/2.42.0.txt Documentation/RelNotes/2.42.0.adoc
Documentation/RelNotes/2.42.1.txt Documentation/RelNotes/2.42.1.adoc
Documentation/RelNotes/2.42.2.txt Documentation/RelNotes/2.42.2.adoc
Documentation/RelNotes/2.42.3.txt Documentation/RelNotes/2.42.3.adoc
Documentation/RelNotes/2.42.4.txt Documentation/RelNotes/2.42.4.adoc
Documentation/RelNotes/2.43.0.txt Documentation/RelNotes/2.43.0.adoc
Documentation/RelNotes/2.43.1.txt Documentation/RelNotes/2.43.1.adoc
Documentation/RelNotes/2.43.2.txt Documentation/RelNotes/2.43.2.adoc
Documentation/RelNotes/2.43.3.txt Documentation/RelNotes/2.43.3.adoc
Documentation/RelNotes/2.43.4.txt Documentation/RelNotes/2.43.4.adoc
Documentation/RelNotes/2.43.5.txt Documentation/RelNotes/2.43.5.adoc
Documentation/RelNotes/2.43.6.txt Documentation/RelNotes/2.43.6.adoc
Documentation/RelNotes/2.44.0.txt Documentation/RelNotes/2.44.0.adoc
Documentation/RelNotes/2.44.1.txt Documentation/RelNotes/2.44.1.adoc
Documentation/RelNotes/2.44.2.txt Documentation/RelNotes/2.44.2.adoc
Documentation/RelNotes/2.44.3.txt Documentation/RelNotes/2.44.3.adoc
Documentation/RelNotes/2.45.0.txt Documentation/RelNotes/2.45.0.adoc
Documentation/RelNotes/2.45.1.txt Documentation/RelNotes/2.45.1.adoc
Documentation/RelNotes/2.45.2.txt Documentation/RelNotes/2.45.2.adoc
Documentation/RelNotes/2.45.3.txt Documentation/RelNotes/2.45.3.adoc
Documentation/RelNotes/2.46.0.txt Documentation/RelNotes/2.46.0.adoc
Documentation/RelNotes/2.46.1.txt Documentation/RelNotes/2.46.1.adoc
Documentation/RelNotes/2.46.2.txt Documentation/RelNotes/2.46.2.adoc
Documentation/RelNotes/2.46.3.txt Documentation/RelNotes/2.46.3.adoc
Documentation/RelNotes/2.47.0.txt Documentation/RelNotes/2.47.0.adoc
Documentation/RelNotes/2.47.1.txt Documentation/RelNotes/2.47.1.adoc
Documentation/RelNotes/2.47.2.txt Documentation/RelNotes/2.47.2.adoc
Documentation/RelNotes/2.48.0.txt Documentation/RelNotes/2.48.0.adoc
Documentation/RelNotes/2.48.1.txt Documentation/RelNotes/2.48.1.adoc
Documentation/RelNotes/2.49.0.txt Documentation/RelNotes/2.49.0.adoc
Documentation/RelNotes/2.5.0.txt Documentation/RelNotes/2.5.0.adoc
Documentation/RelNotes/2.5.1.txt Documentation/RelNotes/2.5.1.adoc
Documentation/RelNotes/2.5.2.txt Documentation/RelNotes/2.5.2.adoc
Documentation/RelNotes/2.5.3.txt Documentation/RelNotes/2.5.3.adoc
Documentation/RelNotes/2.5.4.txt Documentation/RelNotes/2.5.4.adoc
Documentation/RelNotes/2.5.5.txt Documentation/RelNotes/2.5.5.adoc
Documentation/RelNotes/2.5.6.txt Documentation/RelNotes/2.5.6.adoc
Documentation/RelNotes/2.6.0.txt Documentation/RelNotes/2.6.0.adoc
Documentation/RelNotes/2.6.1.txt Documentation/RelNotes/2.6.1.adoc
Documentation/RelNotes/2.6.2.txt Documentation/RelNotes/2.6.2.adoc
Documentation/RelNotes/2.6.3.txt Documentation/RelNotes/2.6.3.adoc
Documentation/RelNotes/2.6.4.txt Documentation/RelNotes/2.6.4.adoc
Documentation/RelNotes/2.6.5.txt Documentation/RelNotes/2.6.5.adoc
Documentation/RelNotes/2.6.6.txt Documentation/RelNotes/2.6.6.adoc
Documentation/RelNotes/2.6.7.txt Documentation/RelNotes/2.6.7.adoc
Documentation/RelNotes/2.7.0.txt Documentation/RelNotes/2.7.0.adoc
Documentation/RelNotes/2.7.1.txt Documentation/RelNotes/2.7.1.adoc
Documentation/RelNotes/2.7.2.txt Documentation/RelNotes/2.7.2.adoc
Documentation/RelNotes/2.7.3.txt Documentation/RelNotes/2.7.3.adoc
Documentation/RelNotes/2.7.4.txt Documentation/RelNotes/2.7.4.adoc
Documentation/RelNotes/2.7.5.txt Documentation/RelNotes/2.7.5.adoc
Documentation/RelNotes/2.7.6.txt Documentation/RelNotes/2.7.6.adoc
Documentation/RelNotes/2.8.0.txt Documentation/RelNotes/2.8.0.adoc
Documentation/RelNotes/2.8.1.txt Documentation/RelNotes/2.8.1.adoc
Documentation/RelNotes/2.8.2.txt Documentation/RelNotes/2.8.2.adoc
Documentation/RelNotes/2.8.3.txt Documentation/RelNotes/2.8.3.adoc
Documentation/RelNotes/2.8.4.txt Documentation/RelNotes/2.8.4.adoc
Documentation/RelNotes/2.8.5.txt Documentation/RelNotes/2.8.5.adoc
Documentation/RelNotes/2.8.6.txt Documentation/RelNotes/2.8.6.adoc
Documentation/RelNotes/2.9.0.txt Documentation/RelNotes/2.9.0.adoc
Documentation/RelNotes/2.9.1.txt Documentation/RelNotes/2.9.1.adoc
Documentation/RelNotes/2.9.2.txt Documentation/RelNotes/2.9.2.adoc
Documentation/RelNotes/2.9.3.txt Documentation/RelNotes/2.9.3.adoc
Documentation/RelNotes/2.9.4.txt Documentation/RelNotes/2.9.4.adoc
Documentation/RelNotes/2.9.5.txt Documentation/RelNotes/2.9.5.adoc
Documentation/ReviewingGuidelines.txt Documentation/ReviewingGuidelines.adoc
Documentation/ToolsForGit.txt Documentation/ToolsForGit.adoc
+1 -1
Documentation/blame-options.txt Documentation/blame-options.adoc
··· 18 18 '<start>' and '<end>' are optional. `-L <start>` or `-L <start>,` spans from 19 19 '<start>' to end of file. `-L ,<end>` spans from start of file to '<end>'. 20 20 + 21 - include::line-range-format.txt[] 21 + include::line-range-format.adoc[] 22 22 23 23 -l:: 24 24 Show long rev (Default: off).
+4 -4
Documentation/cmd-list.perl
··· 5 5 sub format_one { 6 6 my ($source_dir, $out, $nameattr) = @_; 7 7 my ($name, $attr) = @$nameattr; 8 - my ($path) = "$source_dir/Documentation/$name.txt"; 8 + my ($path) = "$source_dir/Documentation/$name.adoc"; 9 9 my ($state, $description); 10 10 my $mansection; 11 11 $state = 0; 12 - open I, '<', "$path" or die "No such file $path.txt"; 12 + open I, '<', "$path" or die "No such file $path.adoc"; 13 13 while (<I>) { 14 14 if (/^(?:git|scalar)[a-z0-9-]*\(([0-9])\)$/) { 15 15 $mansection = $1; ··· 30 30 } 31 31 close I; 32 32 if (!defined $description) { 33 - die "No description found in $path.txt"; 33 + die "No description found in $path.adoc"; 34 34 } 35 35 if (my ($verify_name, $text) = ($description =~ /^($name) - (.*)/)) { 36 36 print $out "linkgit:$name\[$mansection\]::\n\t"; ··· 63 63 close IN; 64 64 65 65 for my $out (@categories) { 66 - my ($cat) = $out =~ /^cmds-(.*)\.txt$/; 66 + my ($cat) = $out =~ /^cmds-(.*)\.adoc$/; 67 67 my ($path) = "$build_dir/$out"; 68 68 open O, '>', "$path+" or die "Cannot open output file $out+"; 69 69 for (@{$cmds{$cat}}) {
+92 -92
Documentation/config.txt Documentation/config.adoc
··· 372 372 names do not conflict with those that are used by Git itself and 373 373 other popular tools, and describe them in your documentation. 374 374 375 - include::config/add.txt[] 375 + include::config/add.adoc[] 376 376 377 - include::config/advice.txt[] 377 + include::config/advice.adoc[] 378 378 379 - include::config/alias.txt[] 379 + include::config/alias.adoc[] 380 380 381 - include::config/am.txt[] 381 + include::config/am.adoc[] 382 382 383 - include::config/apply.txt[] 383 + include::config/apply.adoc[] 384 384 385 - include::config/attr.txt[] 385 + include::config/attr.adoc[] 386 386 387 - include::config/bitmap-pseudo-merge.txt[] 387 + include::config/bitmap-pseudo-merge.adoc[] 388 388 389 - include::config/blame.txt[] 389 + include::config/blame.adoc[] 390 390 391 - include::config/branch.txt[] 391 + include::config/branch.adoc[] 392 392 393 - include::config/browser.txt[] 393 + include::config/browser.adoc[] 394 394 395 - include::config/bundle.txt[] 395 + include::config/bundle.adoc[] 396 396 397 - include::config/checkout.txt[] 397 + include::config/checkout.adoc[] 398 398 399 - include::config/clean.txt[] 399 + include::config/clean.adoc[] 400 400 401 - include::config/clone.txt[] 401 + include::config/clone.adoc[] 402 402 403 - include::config/color.txt[] 403 + include::config/color.adoc[] 404 404 405 - include::config/column.txt[] 405 + include::config/column.adoc[] 406 406 407 - include::config/commit.txt[] 407 + include::config/commit.adoc[] 408 408 409 - include::config/commitgraph.txt[] 409 + include::config/commitgraph.adoc[] 410 410 411 - include::config/completion.txt[] 411 + include::config/completion.adoc[] 412 412 413 - include::config/core.txt[] 413 + include::config/core.adoc[] 414 414 415 - include::config/credential.txt[] 415 + include::config/credential.adoc[] 416 416 417 - include::config/diff.txt[] 417 + include::config/diff.adoc[] 418 418 419 - include::config/difftool.txt[] 419 + include::config/difftool.adoc[] 420 420 421 - include::config/extensions.txt[] 421 + include::config/extensions.adoc[] 422 422 423 - include::config/fastimport.txt[] 423 + include::config/fastimport.adoc[] 424 424 425 - include::config/feature.txt[] 425 + include::config/feature.adoc[] 426 426 427 - include::config/fetch.txt[] 427 + include::config/fetch.adoc[] 428 428 429 - include::config/filter.txt[] 429 + include::config/filter.adoc[] 430 430 431 - include::config/format.txt[] 431 + include::config/format.adoc[] 432 432 433 - include::config/fsck.txt[] 433 + include::config/fsck.adoc[] 434 434 435 - include::config/fsmonitor--daemon.txt[] 435 + include::config/fsmonitor--daemon.adoc[] 436 436 437 - include::config/gc.txt[] 437 + include::config/gc.adoc[] 438 438 439 - include::config/gitcvs.txt[] 439 + include::config/gitcvs.adoc[] 440 440 441 - include::config/gitweb.txt[] 441 + include::config/gitweb.adoc[] 442 442 443 - include::config/gpg.txt[] 443 + include::config/gpg.adoc[] 444 444 445 - include::config/grep.txt[] 445 + include::config/grep.adoc[] 446 446 447 - include::config/gui.txt[] 447 + include::config/gui.adoc[] 448 448 449 - include::config/guitool.txt[] 449 + include::config/guitool.adoc[] 450 450 451 - include::config/help.txt[] 451 + include::config/help.adoc[] 452 452 453 - include::config/http.txt[] 453 + include::config/http.adoc[] 454 454 455 - include::config/i18n.txt[] 455 + include::config/i18n.adoc[] 456 456 457 - include::config/imap.txt[] 457 + include::config/imap.adoc[] 458 458 459 - include::config/includeif.txt[] 459 + include::config/includeif.adoc[] 460 460 461 - include::config/index.txt[] 461 + include::config/index.adoc[] 462 462 463 - include::config/init.txt[] 463 + include::config/init.adoc[] 464 464 465 - include::config/instaweb.txt[] 465 + include::config/instaweb.adoc[] 466 466 467 - include::config/interactive.txt[] 467 + include::config/interactive.adoc[] 468 468 469 - include::config/log.txt[] 469 + include::config/log.adoc[] 470 470 471 - include::config/lsrefs.txt[] 471 + include::config/lsrefs.adoc[] 472 472 473 - include::config/mailinfo.txt[] 473 + include::config/mailinfo.adoc[] 474 474 475 - include::config/mailmap.txt[] 475 + include::config/mailmap.adoc[] 476 476 477 - include::config/maintenance.txt[] 477 + include::config/maintenance.adoc[] 478 478 479 - include::config/man.txt[] 479 + include::config/man.adoc[] 480 480 481 - include::config/merge.txt[] 481 + include::config/merge.adoc[] 482 482 483 - include::config/mergetool.txt[] 483 + include::config/mergetool.adoc[] 484 484 485 - include::config/notes.txt[] 485 + include::config/notes.adoc[] 486 486 487 - include::config/pack.txt[] 487 + include::config/pack.adoc[] 488 488 489 - include::config/pager.txt[] 489 + include::config/pager.adoc[] 490 490 491 - include::config/pretty.txt[] 491 + include::config/pretty.adoc[] 492 492 493 - include::config/promisor.txt[] 493 + include::config/promisor.adoc[] 494 494 495 - include::config/protocol.txt[] 495 + include::config/protocol.adoc[] 496 496 497 - include::config/pull.txt[] 497 + include::config/pull.adoc[] 498 498 499 - include::config/push.txt[] 499 + include::config/push.adoc[] 500 500 501 - include::config/rebase.txt[] 501 + include::config/rebase.adoc[] 502 502 503 - include::config/receive.txt[] 503 + include::config/receive.adoc[] 504 504 505 - include::config/reftable.txt[] 505 + include::config/reftable.adoc[] 506 506 507 - include::config/remote.txt[] 507 + include::config/remote.adoc[] 508 508 509 - include::config/remotes.txt[] 509 + include::config/remotes.adoc[] 510 510 511 - include::config/repack.txt[] 511 + include::config/repack.adoc[] 512 512 513 - include::config/rerere.txt[] 513 + include::config/rerere.adoc[] 514 514 515 - include::config/revert.txt[] 515 + include::config/revert.adoc[] 516 516 517 - include::config/safe.txt[] 517 + include::config/safe.adoc[] 518 518 519 - include::config/sendemail.txt[] 519 + include::config/sendemail.adoc[] 520 520 521 - include::config/sequencer.txt[] 521 + include::config/sequencer.adoc[] 522 522 523 - include::config/showbranch.txt[] 523 + include::config/showbranch.adoc[] 524 524 525 - include::config/sparse.txt[] 525 + include::config/sparse.adoc[] 526 526 527 - include::config/splitindex.txt[] 527 + include::config/splitindex.adoc[] 528 528 529 - include::config/ssh.txt[] 529 + include::config/ssh.adoc[] 530 530 531 - include::config/stash.txt[] 531 + include::config/stash.adoc[] 532 532 533 - include::config/status.txt[] 533 + include::config/status.adoc[] 534 534 535 - include::config/submodule.txt[] 535 + include::config/submodule.adoc[] 536 536 537 - include::config/tag.txt[] 537 + include::config/tag.adoc[] 538 538 539 - include::config/tar.txt[] 539 + include::config/tar.adoc[] 540 540 541 - include::config/trace2.txt[] 541 + include::config/trace2.adoc[] 542 542 543 - include::config/transfer.txt[] 543 + include::config/transfer.adoc[] 544 544 545 - include::config/uploadarchive.txt[] 545 + include::config/uploadarchive.adoc[] 546 546 547 - include::config/uploadpack.txt[] 547 + include::config/uploadpack.adoc[] 548 548 549 - include::config/url.txt[] 549 + include::config/url.adoc[] 550 550 551 - include::config/user.txt[] 551 + include::config/user.adoc[] 552 552 553 - include::config/versionsort.txt[] 553 + include::config/versionsort.adoc[] 554 554 555 - include::config/web.txt[] 555 + include::config/web.adoc[] 556 556 557 - include::config/worktree.txt[] 557 + include::config/worktree.adoc[]
Documentation/config/add.txt Documentation/config/add.adoc
Documentation/config/advice.txt Documentation/config/advice.adoc
Documentation/config/alias.txt Documentation/config/alias.adoc
Documentation/config/am.txt Documentation/config/am.adoc
Documentation/config/apply.txt Documentation/config/apply.adoc
Documentation/config/attr.txt Documentation/config/attr.adoc
Documentation/config/bitmap-pseudo-merge.txt Documentation/config/bitmap-pseudo-merge.adoc
Documentation/config/blame.txt Documentation/config/blame.adoc
Documentation/config/branch.txt Documentation/config/branch.adoc
Documentation/config/browser.txt Documentation/config/browser.adoc
Documentation/config/bundle.txt Documentation/config/bundle.adoc
Documentation/config/checkout.txt Documentation/config/checkout.adoc
Documentation/config/clean.txt Documentation/config/clean.adoc
Documentation/config/clone.txt Documentation/config/clone.adoc
Documentation/config/color.txt Documentation/config/color.adoc
Documentation/config/column.txt Documentation/config/column.adoc
Documentation/config/commit.txt Documentation/config/commit.adoc
Documentation/config/commitgraph.txt Documentation/config/commitgraph.adoc
Documentation/config/completion.txt Documentation/config/completion.adoc
Documentation/config/core.txt Documentation/config/core.adoc
Documentation/config/credential.txt Documentation/config/credential.adoc
+1 -1
Documentation/config/diff.txt Documentation/config/diff.adoc
··· 218 218 Set this option to `true` to make the diff driver cache the text 219 219 conversion outputs. See linkgit:gitattributes[5] for details. 220 220 221 - include::{build_dir}/mergetools-diff.txt[] 221 + include::{build_dir}/mergetools-diff.adoc[] 222 222 223 223 `diff.indentHeuristic`:: 224 224 Set this option to `false` to disable the default heuristics
Documentation/config/difftool.txt Documentation/config/difftool.adoc
+1 -1
Documentation/config/extensions.txt Documentation/config/extensions.adoc
··· 56 56 refStorage:: 57 57 Specify the ref storage format to use. The acceptable values are: 58 58 + 59 - include::../ref-storage-format.txt[] 59 + include::../ref-storage-format.adoc[] 60 60 61 61 + 62 62 Note that this setting should only be set by linkgit:git-init[1] or
Documentation/config/fastimport.txt Documentation/config/fastimport.adoc
Documentation/config/feature.txt Documentation/config/feature.adoc
Documentation/config/fetch.txt Documentation/config/fetch.adoc
Documentation/config/filter.txt Documentation/config/filter.adoc
Documentation/config/fmt-merge-msg.txt Documentation/config/fmt-merge-msg.adoc
Documentation/config/format.txt Documentation/config/format.adoc
Documentation/config/fsck.txt Documentation/config/fsck.adoc
Documentation/config/fsmonitor--daemon.txt Documentation/config/fsmonitor--daemon.adoc
Documentation/config/gc.txt Documentation/config/gc.adoc
Documentation/config/gitcvs.txt Documentation/config/gitcvs.adoc
Documentation/config/gitweb.txt Documentation/config/gitweb.adoc
Documentation/config/gpg.txt Documentation/config/gpg.adoc
Documentation/config/grep.txt Documentation/config/grep.adoc
Documentation/config/gui.txt Documentation/config/gui.adoc
Documentation/config/guitool.txt Documentation/config/guitool.adoc
Documentation/config/help.txt Documentation/config/help.adoc
Documentation/config/http.txt Documentation/config/http.adoc
Documentation/config/i18n.txt Documentation/config/i18n.adoc
Documentation/config/imap.txt Documentation/config/imap.adoc
Documentation/config/includeif.txt Documentation/config/includeif.adoc
Documentation/config/index.txt Documentation/config/index.adoc
Documentation/config/init.txt Documentation/config/init.adoc
Documentation/config/instaweb.txt Documentation/config/instaweb.adoc
Documentation/config/interactive.txt Documentation/config/interactive.adoc
Documentation/config/log.txt Documentation/config/log.adoc
Documentation/config/lsrefs.txt Documentation/config/lsrefs.adoc
Documentation/config/mailinfo.txt Documentation/config/mailinfo.adoc
Documentation/config/mailmap.txt Documentation/config/mailmap.adoc
Documentation/config/maintenance.txt Documentation/config/maintenance.adoc
Documentation/config/man.txt Documentation/config/man.adoc
+2 -2
Documentation/config/merge.txt Documentation/config/merge.adoc
··· 37 37 If true, this is equivalent to the --verify-signatures command 38 38 line option. See linkgit:git-merge[1] for details. 39 39 40 - include::fmt-merge-msg.txt[] 40 + include::fmt-merge-msg.adoc[] 41 41 42 42 merge.renameLimit:: 43 43 The number of files to consider in the exhaustive portion of ··· 101 101 Any other value is treated as a custom merge tool and requires that a 102 102 corresponding mergetool.<guitool>.cmd variable is defined. 103 103 104 - include::{build_dir}/mergetools-merge.txt[] 104 + include::{build_dir}/mergetools-merge.adoc[] 105 105 106 106 merge.verbosity:: 107 107 Controls the amount of output shown by the recursive merge
Documentation/config/mergetool.txt Documentation/config/mergetool.adoc
Documentation/config/notes.txt Documentation/config/notes.adoc
Documentation/config/pack.txt Documentation/config/pack.adoc
Documentation/config/pager.txt Documentation/config/pager.adoc
Documentation/config/pretty.txt Documentation/config/pretty.adoc
Documentation/config/promisor.txt Documentation/config/promisor.adoc
Documentation/config/protocol.txt Documentation/config/protocol.adoc
Documentation/config/pull.txt Documentation/config/pull.adoc
Documentation/config/push.txt Documentation/config/push.adoc
Documentation/config/rebase.txt Documentation/config/rebase.adoc
Documentation/config/receive.txt Documentation/config/receive.adoc
Documentation/config/reftable.txt Documentation/config/reftable.adoc
Documentation/config/remote.txt Documentation/config/remote.adoc
Documentation/config/remotes.txt Documentation/config/remotes.adoc
Documentation/config/repack.txt Documentation/config/repack.adoc
Documentation/config/rerere.txt Documentation/config/rerere.adoc
Documentation/config/revert.txt Documentation/config/revert.adoc
Documentation/config/safe.txt Documentation/config/safe.adoc
Documentation/config/sendemail.txt Documentation/config/sendemail.adoc
Documentation/config/sequencer.txt Documentation/config/sequencer.adoc
Documentation/config/showbranch.txt Documentation/config/showbranch.adoc
Documentation/config/sparse.txt Documentation/config/sparse.adoc
Documentation/config/splitindex.txt Documentation/config/splitindex.adoc
Documentation/config/ssh.txt Documentation/config/ssh.adoc
Documentation/config/stash.txt Documentation/config/stash.adoc
Documentation/config/status.txt Documentation/config/status.adoc
Documentation/config/submodule.txt Documentation/config/submodule.adoc
Documentation/config/tag.txt Documentation/config/tag.adoc
Documentation/config/tar.txt Documentation/config/tar.adoc
+1 -1
Documentation/config/trace2.txt Documentation/config/trace2.adoc
··· 17 17 It may be overridden by the `GIT_TRACE2_EVENT` environment variable. 18 18 The following table shows possible values. 19 19 + 20 - include::../trace2-target-values.txt[] 20 + include::../trace2-target-values.adoc[] 21 21 22 22 trace2.normalBrief:: 23 23 Boolean. When true `time`, `filename`, and `line` fields are
Documentation/config/transfer.txt Documentation/config/transfer.adoc
Documentation/config/uploadarchive.txt Documentation/config/uploadarchive.adoc
Documentation/config/uploadpack.txt Documentation/config/uploadpack.adoc
Documentation/config/url.txt Documentation/config/url.adoc
Documentation/config/user.txt Documentation/config/user.adoc
Documentation/config/versionsort.txt Documentation/config/versionsort.adoc
Documentation/config/web.txt Documentation/config/web.adoc
Documentation/config/worktree.txt Documentation/config/worktree.adoc
Documentation/date-formats.txt Documentation/date-formats.adoc
+1 -1
Documentation/diff-format.txt Documentation/diff-format.adoc
··· 121 121 all parents. 122 122 123 123 124 - include::diff-generate-patch.txt[] 124 + include::diff-generate-patch.adoc[] 125 125 126 126 127 127 other diff formats
Documentation/diff-generate-patch.txt Documentation/diff-generate-patch.adoc
Documentation/diff-options.txt Documentation/diff-options.adoc
Documentation/everyday.txto Documentation/everyday.adoco
Documentation/fetch-options.txt Documentation/fetch-options.adoc
Documentation/fsck-msgids.txt Documentation/fsck-msgids.adoc
+2 -2
Documentation/git-add.txt Documentation/git-add.adoc
··· 437 437 CONFIGURATION 438 438 ------------- 439 439 440 - include::includes/cmd-config-section-all.txt[] 440 + include::includes/cmd-config-section-all.adoc[] 441 441 442 442 :git-add: 1 443 - include::config/add.txt[] 443 + include::config/add.adoc[] 444 444 445 445 SEE ALSO 446 446 --------
+3 -3
Documentation/git-am.txt Documentation/git-am.adoc
··· 120 120 am.threeWay configuration variable. For more information, 121 121 see am.threeWay in linkgit:git-config[1]. 122 122 123 - include::rerere-options.txt[] 123 + include::rerere-options.adoc[] 124 124 125 125 --ignore-space-change:: 126 126 --ignore-whitespace:: ··· 284 284 CONFIGURATION 285 285 ------------- 286 286 287 - include::includes/cmd-config-section-all.txt[] 287 + include::includes/cmd-config-section-all.adoc[] 288 288 289 - include::config/am.txt[] 289 + include::config/am.adoc[] 290 290 291 291 SEE ALSO 292 292 --------
+1 -1
Documentation/git-annotate.txt Documentation/git-annotate.adoc
··· 22 22 23 23 OPTIONS 24 24 ------- 25 - include::blame-options.txt[] 25 + include::blame-options.adoc[] 26 26 27 27 SEE ALSO 28 28 --------
+2 -2
Documentation/git-apply.txt Documentation/git-apply.adoc
··· 270 270 CONFIGURATION 271 271 ------------- 272 272 273 - include::includes/cmd-config-section-all.txt[] 273 + include::includes/cmd-config-section-all.adoc[] 274 274 275 - include::config/apply.txt[] 275 + include::config/apply.adoc[] 276 276 277 277 SUBMODULES 278 278 ----------
Documentation/git-archimport.txt Documentation/git-archimport.adoc
Documentation/git-archive.txt Documentation/git-archive.adoc
Documentation/git-bisect-lk2009.txt Documentation/git-bisect-lk2009.adoc
Documentation/git-bisect.txt Documentation/git-bisect.adoc
+3 -3
Documentation/git-blame.txt Documentation/git-blame.adoc
··· 48 48 49 49 OPTIONS 50 50 ------- 51 - include::blame-options.txt[] 51 + include::blame-options.adoc[] 52 52 53 53 -c:: 54 54 Use the same output mode as linkgit:git-annotate[1] (Default: off). ··· 244 244 CONFIGURATION 245 245 ------------- 246 246 247 - include::includes/cmd-config-section-all.txt[] 247 + include::includes/cmd-config-section-all.adoc[] 248 248 249 - include::config/blame.txt[] 249 + include::config/blame.adoc[] 250 250 251 251 SEE ALSO 252 252 --------
+3 -3
Documentation/git-branch.txt Documentation/git-branch.adoc
··· 345 345 `--list` is used or implied. The default is to use a pager. 346 346 See linkgit:git-config[1]. 347 347 348 - include::includes/cmd-config-section-rest.txt[] 348 + include::includes/cmd-config-section-rest.adoc[] 349 349 350 - include::config/branch.txt[] 350 + include::config/branch.adoc[] 351 351 352 352 EXAMPLES 353 353 -------- ··· 415 415 - `--no-merged` is used to find branches which are candidates for merging 416 416 into HEAD, since those branches are not fully contained by HEAD. 417 417 418 - include::ref-reachability-filters.txt[] 418 + include::ref-reachability-filters.adoc[] 419 419 420 420 SEE ALSO 421 421 --------
Documentation/git-bugreport.txt Documentation/git-bugreport.adoc
Documentation/git-bundle.txt Documentation/git-bundle.adoc
Documentation/git-cat-file.txt Documentation/git-cat-file.adoc
Documentation/git-check-attr.txt Documentation/git-check-attr.adoc
Documentation/git-check-ignore.txt Documentation/git-check-ignore.adoc
Documentation/git-check-mailmap.txt Documentation/git-check-mailmap.adoc
Documentation/git-check-ref-format.txt Documentation/git-check-ref-format.adoc
Documentation/git-checkout-index.txt Documentation/git-checkout-index.adoc
+2 -2
Documentation/git-checkout.txt Documentation/git-checkout.adoc
··· 612 612 CONFIGURATION 613 613 ------------- 614 614 615 - include::includes/cmd-config-section-all.txt[] 615 + include::includes/cmd-config-section-all.adoc[] 616 616 617 - include::config/checkout.txt[] 617 + include::config/checkout.adoc[] 618 618 619 619 SEE ALSO 620 620 --------
+2 -2
Documentation/git-cherry-pick.txt Documentation/git-cherry-pick.adoc
··· 172 172 Pass the merge strategy-specific option through to the 173 173 merge strategy. See linkgit:git-merge[1] for details. 174 174 175 - include::rerere-options.txt[] 175 + include::rerere-options.adoc[] 176 176 177 177 SEQUENCER SUBCOMMANDS 178 178 --------------------- 179 - include::sequencer.txt[] 179 + include::sequencer.adoc[] 180 180 181 181 EXAMPLES 182 182 --------
Documentation/git-cherry.txt Documentation/git-cherry.adoc
Documentation/git-citool.txt Documentation/git-citool.adoc
+2 -2
Documentation/git-clean.txt Documentation/git-clean.adoc
··· 140 140 CONFIGURATION 141 141 ------------- 142 142 143 - include::includes/cmd-config-section-all.txt[] 143 + include::includes/cmd-config-section-all.adoc[] 144 144 145 - include::config/clean.txt[] 145 + include::config/clean.adoc[] 146 146 147 147 SEE ALSO 148 148 --------
+5 -5
Documentation/git-clone.txt Documentation/git-clone.adoc
··· 321 321 322 322 Specify the given ref storage format for the repository. The valid values are: 323 323 + 324 - include::ref-storage-format.txt[] 324 + include::ref-storage-format.adoc[] 325 325 326 326 `-j` _<n>_:: 327 327 `--jobs` _<n>_:: ··· 348 348 `--shallow-since`, and `--shallow-exclude`. 349 349 350 350 :git-clone: 1 351 - include::urls.txt[] 351 + include::urls.adoc[] 352 352 353 353 EXAMPLES 354 354 -------- ··· 396 396 CONFIGURATION 397 397 ------------- 398 398 399 - include::includes/cmd-config-section-all.txt[] 399 + include::includes/cmd-config-section-all.adoc[] 400 400 401 - include::config/init.txt[] 401 + include::config/init.adoc[] 402 402 403 - include::config/clone.txt[] 403 + include::config/clone.adoc[] 404 404 405 405 406 406 GIT
+2 -2
Documentation/git-column.txt Documentation/git-column.adoc
··· 77 77 CONFIGURATION 78 78 ------------- 79 79 80 - include::includes/cmd-config-section-all.txt[] 80 + include::includes/cmd-config-section-all.adoc[] 81 81 82 - include::config/column.txt[] 82 + include::config/column.adoc[] 83 83 84 84 GIT 85 85 ---
+2 -2
Documentation/git-commit-graph.txt Documentation/git-commit-graph.adoc
··· 148 148 CONFIGURATION 149 149 ------------- 150 150 151 - include::includes/cmd-config-section-all.txt[] 151 + include::includes/cmd-config-section-all.adoc[] 152 152 153 - include::config/commitgraph.txt[] 153 + include::config/commitgraph.adoc[] 154 154 155 155 156 156 FILE FORMAT
+2 -2
Documentation/git-commit-tree.txt Documentation/git-commit-tree.adoc
··· 80 80 entry is not provided via "<" redirection, 'git commit-tree' will just wait 81 81 for one to be entered and terminated with ^D. 82 82 83 - include::date-formats.txt[] 83 + include::date-formats.adoc[] 84 84 85 85 Discussion 86 86 ---------- 87 87 88 - include::i18n.txt[] 88 + include::i18n.adoc[] 89 89 90 90 FILES 91 91 -----
+5 -5
Documentation/git-commit.txt Documentation/git-commit.adoc
··· 198 198 message, the commit is aborted. This has no effect when a message 199 199 is given by other means, e.g. with the `-m` or `-F` options. 200 200 201 - include::signoff-option.txt[] 201 + include::signoff-option.adoc[] 202 202 203 203 --trailer <token>[(=|:)<value>]:: 204 204 Specify a (<token>, <value>) pair that should be applied as a ··· 537 537 the other options are provided for more complex use cases. 538 538 539 539 :git-commit: 1 540 - include::date-formats.txt[] 540 + include::date-formats.adoc[] 541 541 542 542 DISCUSSION 543 543 ---------- ··· 550 550 For example, linkgit:git-format-patch[1] turns a commit into email, and it uses 551 551 the title on the Subject line and the rest of the commit in the body. 552 552 553 - include::i18n.txt[] 553 + include::i18n.adoc[] 554 554 555 555 ENVIRONMENT AND CONFIGURATION VARIABLES 556 556 --------------------------------------- ··· 559 559 `VISUAL` environment variable, or the `EDITOR` environment variable (in that 560 560 order). See linkgit:git-var[1] for details. 561 561 562 - include::includes/cmd-config-section-rest.txt[] 562 + include::includes/cmd-config-section-rest.adoc[] 563 563 564 - include::config/commit.txt[] 564 + include::config/commit.adoc[] 565 565 566 566 HOOKS 567 567 -----
+1 -1
Documentation/git-config.txt Documentation/git-config.adoc
··· 610 610 http.sslverify false 611 611 ------------ 612 612 613 - include::config.txt[] 613 + include::config.adoc[] 614 614 615 615 BUGS 616 616 ----
Documentation/git-count-objects.txt Documentation/git-count-objects.adoc
Documentation/git-credential-cache--daemon.txt Documentation/git-credential-cache--daemon.adoc
Documentation/git-credential-cache.txt Documentation/git-credential-cache.adoc
Documentation/git-credential-store.txt Documentation/git-credential-store.adoc
Documentation/git-credential.txt Documentation/git-credential.adoc
Documentation/git-cvsexportcommit.txt Documentation/git-cvsexportcommit.adoc
Documentation/git-cvsimport.txt Documentation/git-cvsimport.adoc
Documentation/git-cvsserver.txt Documentation/git-cvsserver.adoc
Documentation/git-daemon.txt Documentation/git-daemon.adoc
Documentation/git-describe.txt Documentation/git-describe.adoc
Documentation/git-diagnose.txt Documentation/git-diagnose.adoc
+2 -2
Documentation/git-diff-files.txt Documentation/git-diff-files.adoc
··· 20 20 21 21 OPTIONS 22 22 ------- 23 - include::diff-options.txt[] 23 + include::diff-options.adoc[] 24 24 25 25 -1 --base:: 26 26 -2 --ours:: ··· 45 45 Remain silent even for nonexistent files 46 46 47 47 48 - include::diff-format.txt[] 48 + include::diff-format.adoc[] 49 49 50 50 GIT 51 51 ---
+2 -2
Documentation/git-diff-index.txt Documentation/git-diff-index.adoc
··· 21 21 22 22 OPTIONS 23 23 ------- 24 - include::diff-options.txt[] 24 + include::diff-options.adoc[] 25 25 26 26 <tree-ish>:: 27 27 The id of a tree object to diff against. ··· 40 40 'git diff-index' say that all non-checked-out files are up 41 41 to date. 42 42 43 - include::diff-format.txt[] 43 + include::diff-format.adoc[] 44 44 45 45 OPERATING MODES 46 46 ---------------
+4 -4
Documentation/git-diff-tree.txt Documentation/git-diff-tree.adoc
··· 24 24 25 25 OPTIONS 26 26 ------- 27 - include::diff-options.txt[] 27 + include::diff-options.adoc[] 28 28 29 29 <tree-ish>:: 30 30 The id of a tree object. ··· 84 84 This flag causes 'git diff-tree --stdin' to also show 85 85 the commit message before the differences. 86 86 87 - include::pretty-options.txt[] 87 + include::pretty-options.adoc[] 88 88 89 89 --no-commit-id:: 90 90 'git diff-tree' outputs a line with the commit ID when ··· 122 122 if the diff itself is empty. 123 123 124 124 125 - include::pretty-formats.txt[] 125 + include::pretty-formats.adoc[] 126 126 127 - include::diff-format.txt[] 127 + include::diff-format.adoc[] 128 128 129 129 GIT 130 130 ---
+4 -4
Documentation/git-diff.txt Documentation/git-diff.adoc
··· 123 123 OPTIONS 124 124 ------- 125 125 :git-diff: 1 126 - include::diff-options.txt[] 126 + include::diff-options.adoc[] 127 127 128 128 `-1`:: 129 129 `--base`:: ··· 154 154 names and get diff for all files under them). 155 155 156 156 157 - include::diff-format.txt[] 157 + include::diff-format.adoc[] 158 158 159 159 EXAMPLES 160 160 -------- ··· 232 232 CONFIGURATION 233 233 ------------- 234 234 235 - include::includes/cmd-config-section-all.txt[] 235 + include::includes/cmd-config-section-all.adoc[] 236 236 237 237 :git-diff: 1 238 - include::config/diff.txt[] 238 + include::config/diff.adoc[] 239 239 240 240 SEE ALSO 241 241 --------
+2 -2
Documentation/git-difftool.txt Documentation/git-difftool.adoc
··· 119 119 'git difftool' falls back to 'git mergetool' config variables when the 120 120 difftool equivalents have not been defined. 121 121 122 - include::includes/cmd-config-section-rest.txt[] 122 + include::includes/cmd-config-section-rest.adoc[] 123 123 124 - include::config/difftool.txt[] 124 + include::config/difftool.adoc[] 125 125 126 126 SEE ALSO 127 127 --------
Documentation/git-fast-export.txt Documentation/git-fast-export.adoc
+2 -2
Documentation/git-fast-import.txt Documentation/git-fast-import.adoc
··· 1578 1578 CONFIGURATION 1579 1579 ------------- 1580 1580 1581 - include::includes/cmd-config-section-all.txt[] 1581 + include::includes/cmd-config-section-all.adoc[] 1582 1582 1583 - include::config/fastimport.txt[] 1583 + include::config/fastimport.adoc[] 1584 1584 1585 1585 SEE ALSO 1586 1586 --------
Documentation/git-fetch-pack.txt Documentation/git-fetch-pack.adoc
+6 -6
Documentation/git-fetch.txt Documentation/git-fetch.adoc
··· 44 44 45 45 OPTIONS 46 46 ------- 47 - include::fetch-options.txt[] 47 + include::fetch-options.adoc[] 48 48 49 - include::pull-fetch-param.txt[] 49 + include::pull-fetch-param.adoc[] 50 50 51 51 --stdin:: 52 52 Read refspecs, one per line, from stdin in addition to those provided 53 53 as arguments. The "tag <name>" format is not supported. 54 54 55 - include::urls-remotes.txt[] 55 + include::urls-remotes.adoc[] 56 56 57 57 58 58 CONFIGURED REMOTE-TRACKING BRANCHES[[CRTB]] ··· 292 292 objects will eventually be removed by git's built-in housekeeping (see 293 293 linkgit:git-gc[1]). 294 294 295 - include::transfer-data-leaks.txt[] 295 + include::transfer-data-leaks.adoc[] 296 296 297 297 CONFIGURATION 298 298 ------------- 299 299 300 - include::includes/cmd-config-section-all.txt[] 300 + include::includes/cmd-config-section-all.adoc[] 301 301 302 - include::config/fetch.txt[] 302 + include::config/fetch.adoc[] 303 303 304 304 BUGS 305 305 ----
Documentation/git-filter-branch.txt Documentation/git-filter-branch.adoc
+1 -1
Documentation/git-fmt-merge-msg.txt Documentation/git-fmt-merge-msg.adoc
··· 55 55 56 56 CONFIGURATION 57 57 ------------- 58 - include::config/fmt-merge-msg.txt[] 58 + include::config/fmt-merge-msg.adoc[] 59 59 60 60 merge.summary:: 61 61 Synonym to `merge.log`; this is deprecated and will be removed in
+1 -1
Documentation/git-for-each-ref.txt Documentation/git-for-each-ref.adoc
··· 538 538 NOTES 539 539 ----- 540 540 541 - include::ref-reachability-filters.txt[] 541 + include::ref-reachability-filters.adoc[] 542 542 543 543 SEE ALSO 544 544 --------
Documentation/git-for-each-repo.txt Documentation/git-for-each-repo.adoc
+1 -1
Documentation/git-format-patch.txt Documentation/git-format-patch.adoc
··· 105 105 OPTIONS 106 106 ------- 107 107 :git-format-patch: 1 108 - include::diff-options.txt[] 108 + include::diff-options.adoc[] 109 109 110 110 -<n>:: 111 111 Prepare patches from the topmost <n> commits.
Documentation/git-fsck-objects.txt Documentation/git-fsck-objects.adoc
+3 -3
Documentation/git-fsck.txt Documentation/git-fsck.adoc
··· 107 107 CONFIGURATION 108 108 ------------- 109 109 110 - include::includes/cmd-config-section-all.txt[] 110 + include::includes/cmd-config-section-all.adoc[] 111 111 112 - include::config/fsck.txt[] 112 + include::config/fsck.adoc[] 113 113 114 114 DISCUSSION 115 115 ---------- ··· 161 161 error, other than those that are marked as "(FATAL)", can be tweaked 162 162 by setting the corresponding `fsck.<msg-id>` configuration variable. 163 163 164 - include::fsck-msgids.txt[] 164 + include::fsck-msgids.adoc[] 165 165 166 166 167 167 Environment Variables
+2 -2
Documentation/git-fsmonitor--daemon.txt Documentation/git-fsmonitor--daemon.adoc
··· 97 97 CONFIGURATION 98 98 ------------- 99 99 100 - include::includes/cmd-config-section-all.txt[] 100 + include::includes/cmd-config-section-all.adoc[] 101 101 102 - include::config/fsmonitor--daemon.txt[] 102 + include::config/fsmonitor--daemon.adoc[] 103 103 104 104 GIT 105 105 ---
+2 -2
Documentation/git-gc.txt Documentation/git-gc.adoc
··· 122 122 CONFIGURATION 123 123 ------------- 124 124 125 - include::includes/cmd-config-section-all.txt[] 125 + include::includes/cmd-config-section-all.adoc[] 126 126 127 - include::config/gc.txt[] 127 + include::config/gc.adoc[] 128 128 129 129 NOTES 130 130 -----
Documentation/git-get-tar-commit-id.txt Documentation/git-get-tar-commit-id.adoc
+2 -2
Documentation/git-grep.txt Documentation/git-grep.adoc
··· 351 351 CONFIGURATION 352 352 ------------- 353 353 354 - include::includes/cmd-config-section-all.txt[] 354 + include::includes/cmd-config-section-all.adoc[] 355 355 356 - include::config/grep.txt[] 356 + include::config/grep.adoc[] 357 357 358 358 GIT 359 359 ---
Documentation/git-gui.txt Documentation/git-gui.adoc
Documentation/git-hash-object.txt Documentation/git-hash-object.adoc
Documentation/git-help.txt Documentation/git-help.adoc
Documentation/git-hook.txt Documentation/git-hook.adoc
Documentation/git-http-backend.txt Documentation/git-http-backend.adoc
Documentation/git-http-fetch.txt Documentation/git-http-fetch.adoc
Documentation/git-http-push.txt Documentation/git-http-push.adoc
+2 -2
Documentation/git-imap-send.txt Documentation/git-imap-send.adoc
··· 54 54 To use the tool, `imap.folder` and either `imap.tunnel` or `imap.host` must be set 55 55 to appropriate values. 56 56 57 - include::includes/cmd-config-section-rest.txt[] 57 + include::includes/cmd-config-section-rest.adoc[] 58 58 59 - include::config/imap.txt[] 59 + include::config/imap.adoc[] 60 60 61 61 EXAMPLES 62 62 --------
+1 -1
Documentation/git-index-pack.txt Documentation/git-index-pack.adoc
··· 130 130 + 131 131 This option cannot be used with --stdin. 132 132 + 133 - include::object-format-disclaimer.txt[] 133 + include::object-format-disclaimer.adoc[] 134 134 135 135 --promisor[=<message>]:: 136 136 Before committing the pack-index, create a .promisor file for this
Documentation/git-init-db.txt Documentation/git-init-db.adoc
+4 -4
Documentation/git-init.txt Documentation/git-init.adoc
··· 55 55 Specify the given object _<format>_ (hash algorithm) for the repository. The valid 56 56 values are `sha1` and (if enabled) `sha256`. `sha1` is the default. 57 57 + 58 - include::object-format-disclaimer.txt[] 58 + include::object-format-disclaimer.adoc[] 59 59 60 60 `--ref-format=<format>`:: 61 61 Specify the given ref storage _<format>_ for the repository. The valid values are: 62 62 + 63 - include::ref-storage-format.txt[] 63 + include::ref-storage-format.adoc[] 64 64 65 65 `--template=<template-directory>`:: 66 66 Specify the directory from which templates will be used. (See the "TEMPLATE ··· 178 178 CONFIGURATION 179 179 ------------- 180 180 181 - include::includes/cmd-config-section-all.txt[] 181 + include::includes/cmd-config-section-all.adoc[] 182 182 183 183 :git-init: 184 184 185 - include::config/init.txt[] 185 + include::config/init.adoc[] 186 186 187 187 GIT 188 188 ---
Documentation/git-instaweb.txt Documentation/git-instaweb.adoc
Documentation/git-interpret-trailers.txt Documentation/git-interpret-trailers.adoc
+10 -10
Documentation/git-log.txt Documentation/git-log.adoc
··· 16 16 Shows the commit logs. 17 17 18 18 :git-log: 1 19 - include::rev-list-description.txt[] 19 + include::rev-list-description.adoc[] 20 20 21 21 The command takes options applicable to the linkgit:git-rev-list[1] 22 22 command to control what is shown and how, and options applicable to ··· 89 89 Intended to speed up tools that read log messages from `git log` 90 90 output by allowing them to allocate space in advance. 91 91 92 - include::line-range-options.txt[] 92 + include::line-range-options.adoc[] 93 93 94 94 <revision-range>:: 95 95 Show only commits in the specified revision range. When no ··· 109 109 Paths may need to be prefixed with `--` to separate them from 110 110 options or the revision range, when confusion arises. 111 111 112 - include::rev-list-options.txt[] 112 + include::rev-list-options.adoc[] 113 113 114 - include::pretty-formats.txt[] 114 + include::pretty-formats.adoc[] 115 115 116 116 DIFF FORMATTING 117 117 --------------- ··· 128 128 129 129 :git-log: 1 130 130 :diff-merges-default: `off` 131 - include::diff-options.txt[] 131 + include::diff-options.adoc[] 132 132 133 - include::diff-generate-patch.txt[] 133 + include::diff-generate-patch.adoc[] 134 134 135 135 EXAMPLES 136 136 -------- ··· 192 192 DISCUSSION 193 193 ---------- 194 194 195 - include::i18n.txt[] 195 + include::i18n.adoc[] 196 196 197 197 CONFIGURATION 198 198 ------------- ··· 209 209 Defaults to the value of `i18n.commitEncoding` if set, and UTF-8 210 210 otherwise. 211 211 212 - include::includes/cmd-config-section-rest.txt[] 212 + include::includes/cmd-config-section-rest.adoc[] 213 213 214 - include::config/log.txt[] 214 + include::config/log.adoc[] 215 215 216 - include::config/notes.txt[] 216 + include::config/notes.adoc[] 217 217 218 218 GIT 219 219 ---
Documentation/git-ls-files.txt Documentation/git-ls-files.adoc
Documentation/git-ls-remote.txt Documentation/git-ls-remote.adoc
Documentation/git-ls-tree.txt Documentation/git-ls-tree.adoc
+2 -2
Documentation/git-mailinfo.txt Documentation/git-mailinfo.adoc
··· 118 118 CONFIGURATION 119 119 ------------- 120 120 121 - include::includes/cmd-config-section-all.txt[] 121 + include::includes/cmd-config-section-all.adoc[] 122 122 123 - include::config/mailinfo.txt[] 123 + include::config/mailinfo.adoc[] 124 124 125 125 GIT 126 126 ---
Documentation/git-mailsplit.txt Documentation/git-mailsplit.adoc
+2 -2
Documentation/git-maintenance.txt Documentation/git-maintenance.adoc
··· 409 409 CONFIGURATION 410 410 ------------- 411 411 412 - include::includes/cmd-config-section-all.txt[] 412 + include::includes/cmd-config-section-all.adoc[] 413 413 414 - include::config/maintenance.txt[] 414 + include::config/maintenance.adoc[] 415 415 416 416 417 417 GIT
Documentation/git-merge-base.txt Documentation/git-merge-base.adoc
Documentation/git-merge-file.txt Documentation/git-merge-file.adoc
Documentation/git-merge-index.txt Documentation/git-merge-index.adoc
Documentation/git-merge-one-file.txt Documentation/git-merge-one-file.adoc
Documentation/git-merge-tree.txt Documentation/git-merge-tree.adoc
+5 -5
Documentation/git-merge.txt Documentation/git-merge.adoc
··· 65 65 ------- 66 66 :git-merge: 1 67 67 68 - include::merge-options.txt[] 68 + include::merge-options.adoc[] 69 69 70 70 -m <msg>:: 71 71 Set the commit message to be used for the merge commit (in ··· 91 91 If `--log` is specified, a shortlog of the commits being merged 92 92 will be appended to the specified message. 93 93 94 - include::rerere-options.txt[] 94 + include::rerere-options.adoc[] 95 95 96 96 --overwrite-ignore:: 97 97 --no-overwrite-ignore:: ··· 385 385 release/version name would be acceptable. 386 386 387 387 388 - include::merge-strategies.txt[] 388 + include::merge-strategies.adoc[] 389 389 390 390 CONFIGURATION 391 391 ------------- ··· 395 395 supported options are the same as those of `git merge`, but option 396 396 values containing whitespace characters are currently not supported. 397 397 398 - include::includes/cmd-config-section-rest.txt[] 398 + include::includes/cmd-config-section-rest.adoc[] 399 399 400 - include::config/merge.txt[] 400 + include::config/merge.adoc[] 401 401 402 402 SEE ALSO 403 403 --------
Documentation/git-mergetool--lib.txt Documentation/git-mergetool--lib.adoc
+3 -3
Documentation/git-mergetool.txt Documentation/git-mergetool.adoc
··· 104 104 ------------- 105 105 :git-mergetool: 1 106 106 107 - include::includes/cmd-config-section-all.txt[] 107 + include::includes/cmd-config-section-all.adoc[] 108 108 109 - include::config/mergetool.txt[] 109 + include::config/mergetool.adoc[] 110 110 111 111 TEMPORARY FILES 112 112 --------------- ··· 123 123 124 124 vimdiff 125 125 ~~~~~~~ 126 - include::mergetools/vimdiff.txt[] 126 + include::mergetools/vimdiff.adoc[] 127 127 128 128 GIT 129 129 ---
Documentation/git-mktag.txt Documentation/git-mktag.adoc
Documentation/git-mktree.txt Documentation/git-mktree.adoc
Documentation/git-multi-pack-index.txt Documentation/git-multi-pack-index.adoc
Documentation/git-mv.txt Documentation/git-mv.adoc
Documentation/git-name-rev.txt Documentation/git-name-rev.adoc
+2 -2
Documentation/git-notes.txt Documentation/git-notes.adoc
··· 345 345 This setting can be overridden through the environment and 346 346 command line. 347 347 348 - include::includes/cmd-config-section-rest.txt[] 348 + include::includes/cmd-config-section-rest.adoc[] 349 349 350 - include::config/notes.txt[] 350 + include::config/notes.adoc[] 351 351 352 352 353 353 ENVIRONMENT
Documentation/git-p4.txt Documentation/git-p4.adoc
Documentation/git-pack-objects.txt Documentation/git-pack-objects.adoc
Documentation/git-pack-redundant.txt Documentation/git-pack-redundant.adoc
Documentation/git-pack-refs.txt Documentation/git-pack-refs.adoc
Documentation/git-patch-id.txt Documentation/git-patch-id.adoc
Documentation/git-prune-packed.txt Documentation/git-prune-packed.adoc
Documentation/git-prune.txt Documentation/git-prune.adoc
+6 -6
Documentation/git-pull.txt Documentation/git-pull.adoc
··· 102 102 103 103 :git-pull: 1 104 104 105 - include::merge-options.txt[] 105 + include::merge-options.adoc[] 106 106 107 107 -r:: 108 108 --rebase[=(false|true|merges|interactive)]:: ··· 136 136 Options related to fetching 137 137 ~~~~~~~~~~~~~~~~~~~~~~~~~~~ 138 138 139 - include::fetch-options.txt[] 139 + include::fetch-options.adoc[] 140 140 141 - include::pull-fetch-param.txt[] 141 + include::pull-fetch-param.adoc[] 142 142 143 - include::urls-remotes.txt[] 143 + include::urls-remotes.adoc[] 144 144 145 - include::merge-strategies.txt[] 145 + include::merge-strategies.adoc[] 146 146 147 147 DEFAULT BEHAVIOUR 148 148 ----------------- ··· 234 234 would want to start over, you can recover with 'git reset'. 235 235 236 236 237 - include::transfer-data-leaks.txt[] 237 + include::transfer-data-leaks.adoc[] 238 238 239 239 BUGS 240 240 ----
+4 -4
Documentation/git-push.txt Documentation/git-push.adoc
··· 432 432 --ipv6:: 433 433 Use IPv6 addresses only, ignoring IPv4 addresses. 434 434 435 - include::urls-remotes.txt[] 435 + include::urls-remotes.adoc[] 436 436 437 437 OUTPUT 438 438 ------ ··· 695 695 and so would be unreachable. As such, these commits would be removed by 696 696 a `git gc` command on the origin repository. 697 697 698 - include::transfer-data-leaks.txt[] 698 + include::transfer-data-leaks.adoc[] 699 699 700 700 CONFIGURATION 701 701 ------------- 702 702 703 - include::includes/cmd-config-section-all.txt[] 703 + include::includes/cmd-config-section-all.adoc[] 704 704 705 - include::config/push.txt[] 705 + include::config/push.adoc[] 706 706 707 707 GIT 708 708 ---
Documentation/git-quiltimport.txt Documentation/git-quiltimport.adoc
Documentation/git-range-diff.txt Documentation/git-range-diff.adoc
Documentation/git-read-tree.txt Documentation/git-read-tree.adoc
+5 -5
Documentation/git-rebase.txt Documentation/git-rebase.adoc
··· 401 401 + 402 402 See also INCOMPATIBLE OPTIONS below. 403 403 404 - include::rerere-options.txt[] 404 + include::rerere-options.adoc[] 405 405 406 406 -S[<keyid>]:: 407 407 --gpg-sign[=<keyid>]:: ··· 825 825 * State directories: The two backends keep their state in different 826 826 directories under `.git/` 827 827 828 - include::merge-strategies.txt[] 828 + include::merge-strategies.adoc[] 829 829 830 830 NOTES 831 831 ----- ··· 1294 1294 CONFIGURATION 1295 1295 ------------- 1296 1296 1297 - include::includes/cmd-config-section-all.txt[] 1297 + include::includes/cmd-config-section-all.adoc[] 1298 1298 1299 - include::config/rebase.txt[] 1300 - include::config/sequencer.txt[] 1299 + include::config/rebase.adoc[] 1300 + include::config/sequencer.adoc[] 1301 1301 1302 1302 GIT 1303 1303 ---
Documentation/git-receive-pack.txt Documentation/git-receive-pack.adoc
Documentation/git-reflog.txt Documentation/git-reflog.adoc
+1 -1
Documentation/git-refs.txt Documentation/git-refs.adoc
··· 34 34 --ref-format=<format>:: 35 35 The ref format to migrate the ref store to. Can be one of: 36 36 + 37 - include::ref-storage-format.txt[] 37 + include::ref-storage-format.adoc[] 38 38 39 39 --dry-run:: 40 40 Perform the migration, but do not modify the repository. The migrated
Documentation/git-remote-ext.txt Documentation/git-remote-ext.adoc
Documentation/git-remote-fd.txt Documentation/git-remote-fd.adoc
Documentation/git-remote-helpers.txto Documentation/git-remote-helpers.adoco
Documentation/git-remote.txt Documentation/git-remote.adoc
Documentation/git-repack.txt Documentation/git-repack.adoc
Documentation/git-replace.txt Documentation/git-replace.adoc
+1 -1
Documentation/git-replay.txt Documentation/git-replay.adoc
··· 49 49 to. See "Specifying Ranges" in linkgit:git-rev-parse[1] and the 50 50 "Commit Limiting" options below. 51 51 52 - include::rev-list-options.txt[] 52 + include::rev-list-options.adoc[] 53 53 54 54 OUTPUT 55 55 ------
Documentation/git-request-pull.txt Documentation/git-request-pull.adoc
Documentation/git-rerere.txt Documentation/git-rerere.adoc
Documentation/git-reset.txt Documentation/git-reset.adoc
Documentation/git-restore.txt Documentation/git-restore.adoc
+3 -3
Documentation/git-rev-list.txt Documentation/git-rev-list.adoc
··· 15 15 ----------- 16 16 17 17 :git-rev-list: 1 18 - include::rev-list-description.txt[] 18 + include::rev-list-description.adoc[] 19 19 20 20 'rev-list' is an essential Git command, since it 21 21 provides the ability to build and traverse commit ancestry graphs. For ··· 27 27 ------- 28 28 29 29 :git-rev-list: 1 30 - include::rev-list-options.txt[] 30 + include::rev-list-options.adoc[] 31 31 32 - include::pretty-formats.txt[] 32 + include::pretty-formats.adoc[] 33 33 34 34 EXAMPLES 35 35 --------
+1 -1
Documentation/git-rev-parse.txt Documentation/git-rev-parse.adoc
··· 351 351 Flags and parameters to be parsed. 352 352 353 353 354 - include::revisions.txt[] 354 + include::revisions.adoc[] 355 355 356 356 PARSEOPT 357 357 --------
+4 -4
Documentation/git-revert.txt Documentation/git-revert.adoc
··· 112 112 Pass the merge strategy-specific option through to the 113 113 merge strategy. See linkgit:git-merge[1] for details. 114 114 115 - include::rerere-options.txt[] 115 + include::rerere-options.adoc[] 116 116 117 117 --reference:: 118 118 Instead of starting the body of the log message with "This ··· 125 125 126 126 SEQUENCER SUBCOMMANDS 127 127 --------------------- 128 - include::sequencer.txt[] 128 + include::sequencer.adoc[] 129 129 130 130 EXAMPLES 131 131 -------- ··· 155 155 CONFIGURATION 156 156 ------------- 157 157 158 - include::includes/cmd-config-section-all.txt[] 158 + include::includes/cmd-config-section-all.adoc[] 159 159 160 - include::config/revert.txt[] 160 + include::config/revert.adoc[] 161 161 162 162 SEE ALSO 163 163 --------
Documentation/git-rm.txt Documentation/git-rm.adoc
+2 -2
Documentation/git-send-email.txt Documentation/git-send-email.adoc
··· 492 492 CONFIGURATION 493 493 ------------- 494 494 495 - include::includes/cmd-config-section-all.txt[] 495 + include::includes/cmd-config-section-all.adoc[] 496 496 497 - include::config/sendemail.txt[] 497 + include::config/sendemail.adoc[] 498 498 499 499 EXAMPLES 500 500 --------
Documentation/git-send-pack.txt Documentation/git-send-pack.adoc
Documentation/git-sh-i18n--envsubst.txt Documentation/git-sh-i18n--envsubst.adoc
Documentation/git-sh-i18n.txt Documentation/git-sh-i18n.adoc
Documentation/git-sh-setup.txt Documentation/git-sh-setup.adoc
Documentation/git-shell.txt Documentation/git-shell.adoc
+1 -1
Documentation/git-shortlog.txt Documentation/git-shortlog.adoc
··· 114 114 options or the revision range, when confusion arises. 115 115 116 116 :git-shortlog: 1 117 - include::rev-list-options.txt[] 117 + include::rev-list-options.adoc[] 118 118 119 119 MAPPING AUTHORS 120 120 ---------------
+2 -2
Documentation/git-show-branch.txt Documentation/git-show-branch.adoc
··· 202 202 CONFIGURATION 203 203 ------------- 204 204 205 - include::includes/cmd-config-section-all.txt[] 205 + include::includes/cmd-config-section-all.adoc[] 206 206 207 - include::config/showbranch.txt[] 207 + include::config/showbranch.adoc[] 208 208 209 209 GIT 210 210 ---
+1 -1
Documentation/git-show-index.txt Documentation/git-show-index.adoc
··· 45 45 algorithm for the current repository (set by `extensions.objectFormat`), or 46 46 'sha1' if no value is set or outside a repository.. 47 47 + 48 - include::object-format-disclaimer.txt[] 48 + include::object-format-disclaimer.adoc[] 49 49 50 50 GIT 51 51 ---
Documentation/git-show-ref.txt Documentation/git-show-ref.adoc
+5 -5
Documentation/git-show.txt Documentation/git-show.adoc
··· 39 39 For a more complete list of ways to spell object names, see 40 40 "SPECIFYING REVISIONS" section in linkgit:gitrevisions[7]. 41 41 42 - include::pretty-options.txt[] 42 + include::pretty-options.adoc[] 43 43 44 44 45 - include::pretty-formats.txt[] 45 + include::pretty-formats.adoc[] 46 46 47 47 48 48 DIFF FORMATTING ··· 52 52 53 53 :git-log: 1 54 54 :diff-merges-default: `dense-combined` 55 - include::diff-options.txt[] 55 + include::diff-options.adoc[] 56 56 57 - include::diff-generate-patch.txt[] 57 + include::diff-generate-patch.adoc[] 58 58 59 59 60 60 EXAMPLES ··· 83 83 DISCUSSION 84 84 ---------- 85 85 86 - include::i18n.txt[] 86 + include::i18n.adoc[] 87 87 88 88 GIT 89 89 ---
Documentation/git-sparse-checkout.txt Documentation/git-sparse-checkout.adoc
Documentation/git-stage.txt Documentation/git-stage.adoc
+2 -2
Documentation/git-stash.txt Documentation/git-stash.adoc
··· 388 388 CONFIGURATION 389 389 ------------- 390 390 391 - include::includes/cmd-config-section-all.txt[] 391 + include::includes/cmd-config-section-all.adoc[] 392 392 393 - include::config/stash.txt[] 393 + include::config/stash.adoc[] 394 394 395 395 396 396 SEE ALSO
Documentation/git-status.txt Documentation/git-status.adoc
Documentation/git-stripspace.txt Documentation/git-stripspace.adoc
Documentation/git-submodule.txt Documentation/git-submodule.adoc
Documentation/git-svn.txt Documentation/git-svn.adoc
+2 -2
Documentation/git-switch.txt Documentation/git-switch.adoc
··· 273 273 CONFIGURATION 274 274 ------------- 275 275 276 - include::includes/cmd-config-section-all.txt[] 276 + include::includes/cmd-config-section-all.adoc[] 277 277 278 - include::config/checkout.txt[] 278 + include::config/checkout.adoc[] 279 279 280 280 SEE ALSO 281 281 --------
Documentation/git-symbolic-ref.txt Documentation/git-symbolic-ref.adoc
+2 -2
Documentation/git-tag.txt Documentation/git-tag.adoc
··· 391 391 $ GIT_COMMITTER_DATE="2006-10-02 10:31" git tag -s v1.0.1 392 392 ------------ 393 393 394 - include::date-formats.txt[] 394 + include::date-formats.adoc[] 395 395 396 396 FILES 397 397 ----- ··· 406 406 NOTES 407 407 ----- 408 408 409 - include::ref-reachability-filters.txt[] 409 + include::ref-reachability-filters.adoc[] 410 410 411 411 SEE ALSO 412 412 --------
Documentation/git-tools.txt Documentation/git-tools.adoc
Documentation/git-unpack-file.txt Documentation/git-unpack-file.adoc
Documentation/git-unpack-objects.txt Documentation/git-unpack-objects.adoc
Documentation/git-update-index.txt Documentation/git-update-index.adoc
Documentation/git-update-ref.txt Documentation/git-update-ref.adoc
Documentation/git-update-server-info.txt Documentation/git-update-server-info.adoc
Documentation/git-upload-archive.txt Documentation/git-upload-archive.adoc
Documentation/git-upload-pack.txt Documentation/git-upload-pack.adoc
Documentation/git-var.txt Documentation/git-var.adoc
Documentation/git-verify-commit.txt Documentation/git-verify-commit.adoc
Documentation/git-verify-pack.txt Documentation/git-verify-pack.adoc
Documentation/git-verify-tag.txt Documentation/git-verify-tag.adoc
Documentation/git-version.txt Documentation/git-version.adoc
Documentation/git-web--browse.txt Documentation/git-web--browse.adoc
Documentation/git-whatchanged.txt Documentation/git-whatchanged.adoc
Documentation/git-worktree.txt Documentation/git-worktree.adoc
Documentation/git-write-tree.txt Documentation/git-write-tree.adoc
+12 -12
Documentation/git.txt Documentation/git.adoc
··· 245 245 Main porcelain commands 246 246 ~~~~~~~~~~~~~~~~~~~~~~~ 247 247 248 - include::{build_dir}/cmds-mainporcelain.txt[] 248 + include::{build_dir}/cmds-mainporcelain.adoc[] 249 249 250 250 Ancillary Commands 251 251 ~~~~~~~~~~~~~~~~~~ 252 252 Manipulators: 253 253 254 - include::{build_dir}/cmds-ancillarymanipulators.txt[] 254 + include::{build_dir}/cmds-ancillarymanipulators.adoc[] 255 255 256 256 Interrogators: 257 257 258 - include::{build_dir}/cmds-ancillaryinterrogators.txt[] 258 + include::{build_dir}/cmds-ancillaryinterrogators.adoc[] 259 259 260 260 261 261 Interacting with Others ··· 264 264 These commands are to interact with foreign SCM and with other 265 265 people via patch over e-mail. 266 266 267 - include::{build_dir}/cmds-foreignscminterface.txt[] 267 + include::{build_dir}/cmds-foreignscminterface.adoc[] 268 268 269 269 Reset, restore and revert 270 270 ~~~~~~~~~~~~~~~~~~~~~~~~~ ··· 313 313 Manipulation commands 314 314 ~~~~~~~~~~~~~~~~~~~~~ 315 315 316 - include::{build_dir}/cmds-plumbingmanipulators.txt[] 316 + include::{build_dir}/cmds-plumbingmanipulators.adoc[] 317 317 318 318 319 319 Interrogation commands 320 320 ~~~~~~~~~~~~~~~~~~~~~~ 321 321 322 - include::{build_dir}/cmds-plumbinginterrogators.txt[] 322 + include::{build_dir}/cmds-plumbinginterrogators.adoc[] 323 323 324 324 In general, the interrogate commands do not touch the files in 325 325 the working tree. ··· 328 328 Syncing repositories 329 329 ~~~~~~~~~~~~~~~~~~~~ 330 330 331 - include::{build_dir}/cmds-synchingrepositories.txt[] 331 + include::{build_dir}/cmds-synchingrepositories.adoc[] 332 332 333 333 The following are helper commands used by the above; end users 334 334 typically do not use them directly. 335 335 336 - include::{build_dir}/cmds-synchelpers.txt[] 336 + include::{build_dir}/cmds-synchelpers.adoc[] 337 337 338 338 339 339 Internal helper commands ··· 342 342 These are internal helper commands used by other commands; end 343 343 users typically do not use them directly. 344 344 345 - include::{build_dir}/cmds-purehelpers.txt[] 345 + include::{build_dir}/cmds-purehelpers.adoc[] 346 346 347 347 Guides 348 348 ------ 349 349 350 350 The following documentation pages are guides about Git concepts. 351 351 352 - include::{build_dir}/cmds-guide.txt[] 352 + include::{build_dir}/cmds-guide.adoc[] 353 353 354 354 Repository, command and file interfaces 355 355 --------------------------------------- ··· 358 358 users are expected to interact with directly. See `--user-formats` in 359 359 linkgit:git-help[1] for more details on the criteria. 360 360 361 - include::{build_dir}/cmds-userinterfaces.txt[] 361 + include::{build_dir}/cmds-userinterfaces.adoc[] 362 362 363 363 File formats, protocols and other developer interfaces 364 364 ------------------------------------------------------ ··· 367 367 other git developer interfaces. See `--developer-interfaces` in 368 368 linkgit:git-help[1]. 369 369 370 - include::{build_dir}/cmds-developerinterfaces.txt[] 370 + include::{build_dir}/cmds-developerinterfaces.adoc[] 371 371 372 372 Configuration Mechanism 373 373 -----------------------
Documentation/gitattributes.txt Documentation/gitattributes.adoc
Documentation/gitcli.txt Documentation/gitcli.adoc
Documentation/gitcore-tutorial.txt Documentation/gitcore-tutorial.adoc
Documentation/gitcredentials.txt Documentation/gitcredentials.adoc
Documentation/gitcvs-migration.txt Documentation/gitcvs-migration.adoc
Documentation/gitdiffcore.txt Documentation/gitdiffcore.adoc
Documentation/giteveryday.txt Documentation/giteveryday.adoc
Documentation/gitfaq.txt Documentation/gitfaq.adoc
Documentation/gitformat-bundle.txt Documentation/gitformat-bundle.adoc
Documentation/gitformat-chunk.txt Documentation/gitformat-chunk.adoc
Documentation/gitformat-commit-graph.txt Documentation/gitformat-commit-graph.adoc
Documentation/gitformat-index.txt Documentation/gitformat-index.adoc
Documentation/gitformat-pack.txt Documentation/gitformat-pack.adoc
Documentation/gitformat-signature.txt Documentation/gitformat-signature.adoc
+1 -1
Documentation/gitglossary.txt Documentation/gitglossary.adoc
··· 12 12 DESCRIPTION 13 13 ----------- 14 14 15 - include::glossary-content.txt[] 15 + include::glossary-content.adoc[] 16 16 17 17 SEE ALSO 18 18 --------
Documentation/githooks.txt Documentation/githooks.adoc
Documentation/gitignore.txt Documentation/gitignore.adoc
+1 -1
Documentation/gitk.txt Documentation/gitk.adoc
··· 98 98 (See "History simplification" in linkgit:git-log[1] for a more 99 99 detailed explanation.) 100 100 101 - include::line-range-options.txt[] 101 + include::line-range-options.adoc[] 102 102 103 103 <revision range>:: 104 104
Documentation/gitmailmap.txt Documentation/gitmailmap.adoc
Documentation/gitmodules.txt Documentation/gitmodules.adoc
+1 -1
Documentation/gitnamespaces.txt Documentation/gitnamespaces.adoc
··· 61 61 git clone ext::'git --namespace=foo %s /tmp/prefixed.git' 62 62 ---------- 63 63 64 - include::transfer-data-leaks.txt[] 64 + include::transfer-data-leaks.adoc[] 65 65 66 66 GIT 67 67 ---
+1 -1
Documentation/gitpacking.txt Documentation/gitpacking.adoc
··· 136 136 137 137 The exact configuration for pseudo-merges is as follows: 138 138 139 - include::config/bitmap-pseudo-merge.txt[] 139 + include::config/bitmap-pseudo-merge.adoc[] 140 140 141 141 === Examples 142 142
Documentation/gitprotocol-capabilities.txt Documentation/gitprotocol-capabilities.adoc
Documentation/gitprotocol-common.txt Documentation/gitprotocol-common.adoc
Documentation/gitprotocol-http.txt Documentation/gitprotocol-http.adoc
Documentation/gitprotocol-pack.txt Documentation/gitprotocol-pack.adoc
Documentation/gitprotocol-v2.txt Documentation/gitprotocol-v2.adoc
Documentation/gitremote-helpers.txt Documentation/gitremote-helpers.adoc
+1 -1
Documentation/gitrepository-layout.txt Documentation/gitrepository-layout.adoc
··· 292 292 worktrees/<id>/config.worktree:: 293 293 Working directory specific configuration file. 294 294 295 - include::technical/repository-version.txt[] 295 + include::technical/repository-version.adoc[] 296 296 297 297 SEE ALSO 298 298 --------
+1 -1
Documentation/gitrevisions.txt Documentation/gitrevisions.adoc
··· 24 24 other objects than commits, e.g. blobs ("files") or trees 25 25 ("directories of files"). 26 26 27 - include::revisions.txt[] 27 + include::revisions.adoc[] 28 28 29 29 30 30 SEE ALSO
Documentation/gitsubmodules.txt Documentation/gitsubmodules.adoc
Documentation/gittutorial-2.txt Documentation/gittutorial-2.adoc
Documentation/gittutorial.txt Documentation/gittutorial.adoc
Documentation/gitweb.conf.txt Documentation/gitweb.conf.adoc
Documentation/gitweb.txt Documentation/gitweb.adoc
Documentation/gitworkflows.txt Documentation/gitworkflows.adoc
Documentation/glossary-content.txt Documentation/glossary-content.adoc
Documentation/howto/coordinate-embargoed-releases.txt Documentation/howto/coordinate-embargoed-releases.adoc
Documentation/howto/keep-canonical-history-correct.txt Documentation/howto/keep-canonical-history-correct.adoc
Documentation/howto/maintain-git.txt Documentation/howto/maintain-git.adoc
Documentation/howto/new-command.txt Documentation/howto/new-command.adoc
Documentation/howto/rebase-from-internal-branch.txt Documentation/howto/rebase-from-internal-branch.adoc
Documentation/howto/rebuild-from-update-hook.txt Documentation/howto/rebuild-from-update-hook.adoc
Documentation/howto/recover-corrupted-blob-object.txt Documentation/howto/recover-corrupted-blob-object.adoc
Documentation/howto/recover-corrupted-object-harder.txt Documentation/howto/recover-corrupted-object-harder.adoc
Documentation/howto/revert-a-faulty-merge.txt Documentation/howto/revert-a-faulty-merge.adoc
Documentation/howto/revert-branch-rebase.txt Documentation/howto/revert-branch-rebase.adoc
Documentation/howto/separating-topic-branches.txt Documentation/howto/separating-topic-branches.adoc
Documentation/howto/setup-git-server-over-http.txt Documentation/howto/setup-git-server-over-http.adoc
Documentation/howto/update-hook-example.txt Documentation/howto/update-hook-example.adoc
Documentation/howto/use-git-daemon.txt Documentation/howto/use-git-daemon.adoc
Documentation/howto/using-merge-subtree.txt Documentation/howto/using-merge-subtree.adoc
Documentation/howto/using-signed-tag-in-pull-request.txt Documentation/howto/using-signed-tag-in-pull-request.adoc
Documentation/i18n.txt Documentation/i18n.adoc
Documentation/includes/cmd-config-section-all.txt Documentation/includes/cmd-config-section-all.adoc
Documentation/includes/cmd-config-section-rest.txt Documentation/includes/cmd-config-section-rest.adoc
+8 -8
Documentation/install-webdoc.sh
··· 3 3 T="$1" 4 4 5 5 for h in \ 6 - *.txt *.html \ 7 - howto/*.txt howto/*.html \ 8 - technical/*.txt technical/*.html \ 9 - RelNotes/*.txt *.css 6 + *.adoc *.html \ 7 + howto/*.adoc howto/*.html \ 8 + technical/*.adoc technical/*.html \ 9 + RelNotes/*.adoc *.css 10 10 do 11 11 if test ! -f "$h" 12 12 then ··· 24 24 done 25 25 strip_leading=$(echo "$T/" | sed -e 's|.|.|g') 26 26 for th in \ 27 - "$T"/*.html "$T"/*.txt \ 28 - "$T"/howto/*.txt "$T"/howto/*.html \ 29 - "$T"/technical/*.txt "$T"/technical/*.html 27 + "$T"/*.html "$T"/*.adoc \ 28 + "$T"/howto/*.adoc "$T"/howto/*.html \ 29 + "$T"/technical/*.adoc "$T"/technical/*.html 30 30 do 31 31 h=$(expr "$th" : "$strip_leading"'\(.*\)') 32 32 case "$h" in 33 - RelNotes-*.txt | index.html) continue ;; 33 + RelNotes-*.adoc | index.html) continue ;; 34 34 esac 35 35 test -f "$h" && continue 36 36 echo >&2 "# rm -f $th"
Documentation/line-range-format.txt Documentation/line-range-format.adoc
+1 -1
Documentation/line-range-options.txt Documentation/line-range-options.adoc
··· 12 12 (namely `--raw`, `--numstat`, `--shortstat`, `--dirstat`, `--summary`, 13 13 `--name-only`, `--name-status`, `--check`) are not currently implemented. 14 14 + 15 - include::line-range-format.txt[] 15 + include::line-range-format.adoc[]
+2 -2
Documentation/lint-gitlink.perl
··· 5 5 6 6 # Parse arguments, a simple state machine for input like: 7 7 # 8 - # <file-to-check.txt> <valid-files-to-link-to> --section=1 git.txt git-add.txt [...] --to-lint git-add.txt a-file.txt [...] 8 + # <file-to-check.adoc> <valid-files-to-link-to> --section=1 git.adoc git-add.adoc [...] --to-lint git-add.adoc a-file.adoc [...] 9 9 my %TXT; 10 10 my %SECTION; 11 11 my $section; ··· 17 17 next; 18 18 } 19 19 20 - my ($name) = $arg =~ /^(.*?)\.txt$/s; 20 + my ($name) = $arg =~ /^(.*?)\.adoc$/s; 21 21 unless (defined $section) { 22 22 $TXT{$name} = $arg; 23 23 next;
+3 -3
Documentation/lint-manpages.sh
··· 31 31 git-?*--?* ) continue ;; 32 32 esac 33 33 34 - if ! test -f "$v.txt" 34 + if ! test -f "$v.adoc" 35 35 then 36 36 echo "no doc: $v" 37 37 ret=1 ··· 63 63 -e 's/[ ].*//' \ 64 64 -e 's/^/listed /' ../command-list.txt 65 65 make print-man1 | 66 - grep '\.txt$' | 66 + grep '\.adoc$' | 67 67 sed -e 's|^|documented |' \ 68 - -e 's/\.txt//' 68 + -e 's/\.adoc//' 69 69 ) | ( 70 70 all_commands="$(printf "%s " "$ALL_COMMANDS" "$BUILT_INS" "$EXCLUDED_PROGRAMS" | tr '\n' ' ')" 71 71 ret=0
+1 -1
Documentation/merge-options.txt Documentation/merge-options.adoc
··· 102 102 With --no-log do not list one-line descriptions from the 103 103 actual commits being merged. 104 104 105 - include::signoff-option.txt[] 105 + include::signoff-option.adoc[] 106 106 107 107 --stat:: 108 108 -n::
Documentation/merge-strategies.txt Documentation/merge-strategies.adoc
Documentation/mergetools/vimdiff.txt Documentation/mergetools/vimdiff.adoc
+221 -221
Documentation/meson.build
··· 1 1 manpages = { 2 2 # Category 1. 3 - 'git-add.txt' : 1, 4 - 'git-am.txt' : 1, 5 - 'git-annotate.txt' : 1, 6 - 'git-apply.txt' : 1, 7 - 'git-archimport.txt' : 1, 8 - 'git-archive.txt' : 1, 9 - 'git-bisect.txt' : 1, 10 - 'git-blame.txt' : 1, 11 - 'git-branch.txt' : 1, 12 - 'git-bugreport.txt' : 1, 13 - 'git-bundle.txt' : 1, 14 - 'git-cat-file.txt' : 1, 15 - 'git-check-attr.txt' : 1, 16 - 'git-check-ignore.txt' : 1, 17 - 'git-check-mailmap.txt' : 1, 18 - 'git-checkout-index.txt' : 1, 19 - 'git-checkout.txt' : 1, 20 - 'git-check-ref-format.txt' : 1, 21 - 'git-cherry-pick.txt' : 1, 22 - 'git-cherry.txt' : 1, 23 - 'git-citool.txt' : 1, 24 - 'git-clean.txt' : 1, 25 - 'git-clone.txt' : 1, 26 - 'git-column.txt' : 1, 27 - 'git-commit-graph.txt' : 1, 28 - 'git-commit-tree.txt' : 1, 29 - 'git-commit.txt' : 1, 30 - 'git-config.txt' : 1, 31 - 'git-count-objects.txt' : 1, 32 - 'git-credential-cache--daemon.txt' : 1, 33 - 'git-credential-cache.txt' : 1, 34 - 'git-credential-store.txt' : 1, 35 - 'git-credential.txt' : 1, 36 - 'git-cvsexportcommit.txt' : 1, 37 - 'git-cvsimport.txt' : 1, 38 - 'git-cvsserver.txt' : 1, 39 - 'git-daemon.txt' : 1, 40 - 'git-describe.txt' : 1, 41 - 'git-diagnose.txt' : 1, 42 - 'git-diff-files.txt' : 1, 43 - 'git-diff-index.txt' : 1, 44 - 'git-difftool.txt' : 1, 45 - 'git-diff-tree.txt' : 1, 46 - 'git-diff.txt' : 1, 47 - 'git-fast-export.txt' : 1, 48 - 'git-fast-import.txt' : 1, 49 - 'git-fetch-pack.txt' : 1, 50 - 'git-fetch.txt' : 1, 51 - 'git-filter-branch.txt' : 1, 52 - 'git-fmt-merge-msg.txt' : 1, 53 - 'git-for-each-ref.txt' : 1, 54 - 'git-for-each-repo.txt' : 1, 55 - 'git-format-patch.txt' : 1, 56 - 'git-fsck-objects.txt' : 1, 57 - 'git-fsck.txt' : 1, 58 - 'git-fsmonitor--daemon.txt' : 1, 59 - 'git-gc.txt' : 1, 60 - 'git-get-tar-commit-id.txt' : 1, 61 - 'git-grep.txt' : 1, 62 - 'git-gui.txt' : 1, 63 - 'git-hash-object.txt' : 1, 64 - 'git-help.txt' : 1, 65 - 'git-hook.txt' : 1, 66 - 'git-http-backend.txt' : 1, 67 - 'git-http-fetch.txt' : 1, 68 - 'git-http-push.txt' : 1, 69 - 'git-imap-send.txt' : 1, 70 - 'git-index-pack.txt' : 1, 71 - 'git-init-db.txt' : 1, 72 - 'git-init.txt' : 1, 73 - 'git-instaweb.txt' : 1, 74 - 'git-interpret-trailers.txt' : 1, 75 - 'git-log.txt' : 1, 76 - 'git-ls-files.txt' : 1, 77 - 'git-ls-remote.txt' : 1, 78 - 'git-ls-tree.txt' : 1, 79 - 'git-mailinfo.txt' : 1, 80 - 'git-mailsplit.txt' : 1, 81 - 'git-maintenance.txt' : 1, 82 - 'git-merge-base.txt' : 1, 83 - 'git-merge-file.txt' : 1, 84 - 'git-merge-index.txt' : 1, 85 - 'git-merge-one-file.txt' : 1, 86 - 'git-mergetool--lib.txt' : 1, 87 - 'git-mergetool.txt' : 1, 88 - 'git-merge-tree.txt' : 1, 89 - 'git-merge.txt' : 1, 90 - 'git-mktag.txt' : 1, 91 - 'git-mktree.txt' : 1, 92 - 'git-multi-pack-index.txt' : 1, 93 - 'git-mv.txt' : 1, 94 - 'git-name-rev.txt' : 1, 95 - 'git-notes.txt' : 1, 96 - 'git-p4.txt' : 1, 97 - 'git-pack-objects.txt' : 1, 98 - 'git-pack-redundant.txt' : 1, 99 - 'git-pack-refs.txt' : 1, 100 - 'git-patch-id.txt' : 1, 101 - 'git-prune-packed.txt' : 1, 102 - 'git-prune.txt' : 1, 103 - 'git-pull.txt' : 1, 104 - 'git-push.txt' : 1, 105 - 'git-quiltimport.txt' : 1, 106 - 'git-range-diff.txt' : 1, 107 - 'git-read-tree.txt' : 1, 108 - 'git-rebase.txt' : 1, 109 - 'git-receive-pack.txt' : 1, 110 - 'git-reflog.txt' : 1, 111 - 'git-refs.txt' : 1, 112 - 'git-remote-ext.txt' : 1, 113 - 'git-remote-fd.txt' : 1, 114 - 'git-remote.txt' : 1, 115 - 'git-repack.txt' : 1, 116 - 'git-replace.txt' : 1, 117 - 'git-replay.txt' : 1, 118 - 'git-request-pull.txt' : 1, 119 - 'git-rerere.txt' : 1, 120 - 'git-reset.txt' : 1, 121 - 'git-restore.txt' : 1, 122 - 'git-revert.txt' : 1, 123 - 'git-rev-list.txt' : 1, 124 - 'git-rev-parse.txt' : 1, 125 - 'git-rm.txt' : 1, 126 - 'git-send-email.txt' : 1, 127 - 'git-send-pack.txt' : 1, 128 - 'git-shell.txt' : 1, 129 - 'git-sh-i18n--envsubst.txt' : 1, 130 - 'git-sh-i18n.txt' : 1, 131 - 'git-shortlog.txt' : 1, 132 - 'git-show-branch.txt' : 1, 133 - 'git-show-index.txt' : 1, 134 - 'git-show-ref.txt' : 1, 135 - 'git-show.txt' : 1, 136 - 'git-sh-setup.txt' : 1, 137 - 'git-sparse-checkout.txt' : 1, 138 - 'git-stage.txt' : 1, 139 - 'git-stash.txt' : 1, 140 - 'git-status.txt' : 1, 141 - 'git-stripspace.txt' : 1, 142 - 'git-submodule.txt' : 1, 143 - 'git-svn.txt' : 1, 144 - 'git-switch.txt' : 1, 145 - 'git-symbolic-ref.txt' : 1, 146 - 'git-tag.txt' : 1, 147 - 'git-unpack-file.txt' : 1, 148 - 'git-unpack-objects.txt' : 1, 149 - 'git-update-index.txt' : 1, 150 - 'git-update-ref.txt' : 1, 151 - 'git-update-server-info.txt' : 1, 152 - 'git-upload-archive.txt' : 1, 153 - 'git-upload-pack.txt' : 1, 154 - 'git-var.txt' : 1, 155 - 'git-verify-commit.txt' : 1, 156 - 'git-verify-pack.txt' : 1, 157 - 'git-verify-tag.txt' : 1, 158 - 'git-version.txt' : 1, 159 - 'git-web--browse.txt' : 1, 160 - 'git-whatchanged.txt' : 1, 161 - 'git-worktree.txt' : 1, 162 - 'git-write-tree.txt' : 1, 163 - 'git.txt' : 1, 164 - 'gitk.txt' : 1, 165 - 'gitweb.txt' : 1, 166 - 'scalar.txt' : 1, 3 + 'git-add.adoc' : 1, 4 + 'git-am.adoc' : 1, 5 + 'git-annotate.adoc' : 1, 6 + 'git-apply.adoc' : 1, 7 + 'git-archimport.adoc' : 1, 8 + 'git-archive.adoc' : 1, 9 + 'git-bisect.adoc' : 1, 10 + 'git-blame.adoc' : 1, 11 + 'git-branch.adoc' : 1, 12 + 'git-bugreport.adoc' : 1, 13 + 'git-bundle.adoc' : 1, 14 + 'git-cat-file.adoc' : 1, 15 + 'git-check-attr.adoc' : 1, 16 + 'git-check-ignore.adoc' : 1, 17 + 'git-check-mailmap.adoc' : 1, 18 + 'git-checkout-index.adoc' : 1, 19 + 'git-checkout.adoc' : 1, 20 + 'git-check-ref-format.adoc' : 1, 21 + 'git-cherry-pick.adoc' : 1, 22 + 'git-cherry.adoc' : 1, 23 + 'git-citool.adoc' : 1, 24 + 'git-clean.adoc' : 1, 25 + 'git-clone.adoc' : 1, 26 + 'git-column.adoc' : 1, 27 + 'git-commit-graph.adoc' : 1, 28 + 'git-commit-tree.adoc' : 1, 29 + 'git-commit.adoc' : 1, 30 + 'git-config.adoc' : 1, 31 + 'git-count-objects.adoc' : 1, 32 + 'git-credential-cache--daemon.adoc' : 1, 33 + 'git-credential-cache.adoc' : 1, 34 + 'git-credential-store.adoc' : 1, 35 + 'git-credential.adoc' : 1, 36 + 'git-cvsexportcommit.adoc' : 1, 37 + 'git-cvsimport.adoc' : 1, 38 + 'git-cvsserver.adoc' : 1, 39 + 'git-daemon.adoc' : 1, 40 + 'git-describe.adoc' : 1, 41 + 'git-diagnose.adoc' : 1, 42 + 'git-diff-files.adoc' : 1, 43 + 'git-diff-index.adoc' : 1, 44 + 'git-difftool.adoc' : 1, 45 + 'git-diff-tree.adoc' : 1, 46 + 'git-diff.adoc' : 1, 47 + 'git-fast-export.adoc' : 1, 48 + 'git-fast-import.adoc' : 1, 49 + 'git-fetch-pack.adoc' : 1, 50 + 'git-fetch.adoc' : 1, 51 + 'git-filter-branch.adoc' : 1, 52 + 'git-fmt-merge-msg.adoc' : 1, 53 + 'git-for-each-ref.adoc' : 1, 54 + 'git-for-each-repo.adoc' : 1, 55 + 'git-format-patch.adoc' : 1, 56 + 'git-fsck-objects.adoc' : 1, 57 + 'git-fsck.adoc' : 1, 58 + 'git-fsmonitor--daemon.adoc' : 1, 59 + 'git-gc.adoc' : 1, 60 + 'git-get-tar-commit-id.adoc' : 1, 61 + 'git-grep.adoc' : 1, 62 + 'git-gui.adoc' : 1, 63 + 'git-hash-object.adoc' : 1, 64 + 'git-help.adoc' : 1, 65 + 'git-hook.adoc' : 1, 66 + 'git-http-backend.adoc' : 1, 67 + 'git-http-fetch.adoc' : 1, 68 + 'git-http-push.adoc' : 1, 69 + 'git-imap-send.adoc' : 1, 70 + 'git-index-pack.adoc' : 1, 71 + 'git-init-db.adoc' : 1, 72 + 'git-init.adoc' : 1, 73 + 'git-instaweb.adoc' : 1, 74 + 'git-interpret-trailers.adoc' : 1, 75 + 'git-log.adoc' : 1, 76 + 'git-ls-files.adoc' : 1, 77 + 'git-ls-remote.adoc' : 1, 78 + 'git-ls-tree.adoc' : 1, 79 + 'git-mailinfo.adoc' : 1, 80 + 'git-mailsplit.adoc' : 1, 81 + 'git-maintenance.adoc' : 1, 82 + 'git-merge-base.adoc' : 1, 83 + 'git-merge-file.adoc' : 1, 84 + 'git-merge-index.adoc' : 1, 85 + 'git-merge-one-file.adoc' : 1, 86 + 'git-mergetool--lib.adoc' : 1, 87 + 'git-mergetool.adoc' : 1, 88 + 'git-merge-tree.adoc' : 1, 89 + 'git-merge.adoc' : 1, 90 + 'git-mktag.adoc' : 1, 91 + 'git-mktree.adoc' : 1, 92 + 'git-multi-pack-index.adoc' : 1, 93 + 'git-mv.adoc' : 1, 94 + 'git-name-rev.adoc' : 1, 95 + 'git-notes.adoc' : 1, 96 + 'git-p4.adoc' : 1, 97 + 'git-pack-objects.adoc' : 1, 98 + 'git-pack-redundant.adoc' : 1, 99 + 'git-pack-refs.adoc' : 1, 100 + 'git-patch-id.adoc' : 1, 101 + 'git-prune-packed.adoc' : 1, 102 + 'git-prune.adoc' : 1, 103 + 'git-pull.adoc' : 1, 104 + 'git-push.adoc' : 1, 105 + 'git-quiltimport.adoc' : 1, 106 + 'git-range-diff.adoc' : 1, 107 + 'git-read-tree.adoc' : 1, 108 + 'git-rebase.adoc' : 1, 109 + 'git-receive-pack.adoc' : 1, 110 + 'git-reflog.adoc' : 1, 111 + 'git-refs.adoc' : 1, 112 + 'git-remote-ext.adoc' : 1, 113 + 'git-remote-fd.adoc' : 1, 114 + 'git-remote.adoc' : 1, 115 + 'git-repack.adoc' : 1, 116 + 'git-replace.adoc' : 1, 117 + 'git-replay.adoc' : 1, 118 + 'git-request-pull.adoc' : 1, 119 + 'git-rerere.adoc' : 1, 120 + 'git-reset.adoc' : 1, 121 + 'git-restore.adoc' : 1, 122 + 'git-revert.adoc' : 1, 123 + 'git-rev-list.adoc' : 1, 124 + 'git-rev-parse.adoc' : 1, 125 + 'git-rm.adoc' : 1, 126 + 'git-send-email.adoc' : 1, 127 + 'git-send-pack.adoc' : 1, 128 + 'git-shell.adoc' : 1, 129 + 'git-sh-i18n--envsubst.adoc' : 1, 130 + 'git-sh-i18n.adoc' : 1, 131 + 'git-shortlog.adoc' : 1, 132 + 'git-show-branch.adoc' : 1, 133 + 'git-show-index.adoc' : 1, 134 + 'git-show-ref.adoc' : 1, 135 + 'git-show.adoc' : 1, 136 + 'git-sh-setup.adoc' : 1, 137 + 'git-sparse-checkout.adoc' : 1, 138 + 'git-stage.adoc' : 1, 139 + 'git-stash.adoc' : 1, 140 + 'git-status.adoc' : 1, 141 + 'git-stripspace.adoc' : 1, 142 + 'git-submodule.adoc' : 1, 143 + 'git-svn.adoc' : 1, 144 + 'git-switch.adoc' : 1, 145 + 'git-symbolic-ref.adoc' : 1, 146 + 'git-tag.adoc' : 1, 147 + 'git-unpack-file.adoc' : 1, 148 + 'git-unpack-objects.adoc' : 1, 149 + 'git-update-index.adoc' : 1, 150 + 'git-update-ref.adoc' : 1, 151 + 'git-update-server-info.adoc' : 1, 152 + 'git-upload-archive.adoc' : 1, 153 + 'git-upload-pack.adoc' : 1, 154 + 'git-var.adoc' : 1, 155 + 'git-verify-commit.adoc' : 1, 156 + 'git-verify-pack.adoc' : 1, 157 + 'git-verify-tag.adoc' : 1, 158 + 'git-version.adoc' : 1, 159 + 'git-web--browse.adoc' : 1, 160 + 'git-whatchanged.adoc' : 1, 161 + 'git-worktree.adoc' : 1, 162 + 'git-write-tree.adoc' : 1, 163 + 'git.adoc' : 1, 164 + 'gitk.adoc' : 1, 165 + 'gitweb.adoc' : 1, 166 + 'scalar.adoc' : 1, 167 167 168 168 # Category 5. 169 - 'gitattributes.txt' : 5, 170 - 'gitformat-bundle.txt' : 5, 171 - 'gitformat-chunk.txt' : 5, 172 - 'gitformat-commit-graph.txt' : 5, 173 - 'gitformat-index.txt' : 5, 174 - 'gitformat-pack.txt' : 5, 175 - 'gitformat-signature.txt' : 5, 176 - 'githooks.txt' : 5, 177 - 'gitignore.txt' : 5, 178 - 'gitmailmap.txt' : 5, 179 - 'gitmodules.txt' : 5, 180 - 'gitprotocol-capabilities.txt' : 5, 181 - 'gitprotocol-common.txt' : 5, 182 - 'gitprotocol-http.txt' : 5, 183 - 'gitprotocol-pack.txt' : 5, 184 - 'gitprotocol-v2.txt' : 5, 185 - 'gitrepository-layout.txt' : 5, 186 - 'gitweb.conf.txt' : 5, 169 + 'gitattributes.adoc' : 5, 170 + 'gitformat-bundle.adoc' : 5, 171 + 'gitformat-chunk.adoc' : 5, 172 + 'gitformat-commit-graph.adoc' : 5, 173 + 'gitformat-index.adoc' : 5, 174 + 'gitformat-pack.adoc' : 5, 175 + 'gitformat-signature.adoc' : 5, 176 + 'githooks.adoc' : 5, 177 + 'gitignore.adoc' : 5, 178 + 'gitmailmap.adoc' : 5, 179 + 'gitmodules.adoc' : 5, 180 + 'gitprotocol-capabilities.adoc' : 5, 181 + 'gitprotocol-common.adoc' : 5, 182 + 'gitprotocol-http.adoc' : 5, 183 + 'gitprotocol-pack.adoc' : 5, 184 + 'gitprotocol-v2.adoc' : 5, 185 + 'gitrepository-layout.adoc' : 5, 186 + 'gitweb.conf.adoc' : 5, 187 187 188 188 # Category 7. 189 - 'gitcli.txt' : 7, 190 - 'gitcore-tutorial.txt' : 7, 191 - 'gitcredentials.txt' : 7, 192 - 'gitcvs-migration.txt' : 7, 193 - 'gitdiffcore.txt' : 7, 194 - 'giteveryday.txt' : 7, 195 - 'gitfaq.txt' : 7, 196 - 'gitglossary.txt' : 7, 197 - 'gitpacking.txt' : 7, 198 - 'gitnamespaces.txt' : 7, 199 - 'gitremote-helpers.txt' : 7, 200 - 'gitrevisions.txt' : 7, 201 - 'gitsubmodules.txt' : 7, 202 - 'gittutorial-2.txt' : 7, 203 - 'gittutorial.txt' : 7, 204 - 'gitworkflows.txt' : 7, 189 + 'gitcli.adoc' : 7, 190 + 'gitcore-tutorial.adoc' : 7, 191 + 'gitcredentials.adoc' : 7, 192 + 'gitcvs-migration.adoc' : 7, 193 + 'gitdiffcore.adoc' : 7, 194 + 'giteveryday.adoc' : 7, 195 + 'gitfaq.adoc' : 7, 196 + 'gitglossary.adoc' : 7, 197 + 'gitpacking.adoc' : 7, 198 + 'gitnamespaces.adoc' : 7, 199 + 'gitremote-helpers.adoc' : 7, 200 + 'gitrevisions.adoc' : 7, 201 + 'gitsubmodules.adoc' : 7, 202 + 'gittutorial-2.adoc' : 7, 203 + 'gittutorial.adoc' : 7, 204 + 'gitworkflows.adoc' : 7, 205 205 } 206 206 207 207 docs_backend = get_option('docs_backend') ··· 287 287 xmlto = find_program('xmlto') 288 288 289 289 cmd_lists = [ 290 - 'cmds-ancillaryinterrogators.txt', 291 - 'cmds-ancillarymanipulators.txt', 292 - 'cmds-mainporcelain.txt', 293 - 'cmds-plumbinginterrogators.txt', 294 - 'cmds-plumbingmanipulators.txt', 295 - 'cmds-synchingrepositories.txt', 296 - 'cmds-synchelpers.txt', 297 - 'cmds-guide.txt', 298 - 'cmds-developerinterfaces.txt', 299 - 'cmds-userinterfaces.txt', 300 - 'cmds-purehelpers.txt', 301 - 'cmds-foreignscminterface.txt', 290 + 'cmds-ancillaryinterrogators.adoc', 291 + 'cmds-ancillarymanipulators.adoc', 292 + 'cmds-mainporcelain.adoc', 293 + 'cmds-plumbinginterrogators.adoc', 294 + 'cmds-plumbingmanipulators.adoc', 295 + 'cmds-synchingrepositories.adoc', 296 + 'cmds-synchelpers.adoc', 297 + 'cmds-guide.adoc', 298 + 'cmds-developerinterfaces.adoc', 299 + 'cmds-userinterfaces.adoc', 300 + 'cmds-purehelpers.adoc', 301 + 'cmds-foreignscminterface.adoc', 302 302 ] 303 303 304 304 documentation_deps += custom_target( ··· 325 325 'MERGE_TOOLS_DIR=' + meson.project_source_root() / 'mergetools', 326 326 ], 327 327 input: 'generate-mergetool-list.sh', 328 - output: 'mergetools-' + mode + '.txt', 328 + output: 'mergetools-' + mode + '.adoc', 329 329 ) 330 330 endforeach 331 331 ··· 414 414 '--out-file=@OUTPUT@', 415 415 '@INPUT@', 416 416 ], 417 - input: 'user-manual.txt', 417 + input: 'user-manual.adoc', 418 418 output: 'user-manual.xml', 419 419 depends: documentation_deps, 420 420 ) ··· 436 436 ) 437 437 438 438 articles = [ 439 - 'DecisionMaking.txt', 440 - 'MyFirstContribution.txt', 441 - 'MyFirstObjectWalk.txt', 442 - 'ReviewingGuidelines.txt', 439 + 'DecisionMaking.adoc', 440 + 'MyFirstContribution.adoc', 441 + 'MyFirstObjectWalk.adoc', 442 + 'ReviewingGuidelines.adoc', 443 443 'SubmittingPatches', 444 - 'ToolsForGit.txt', 445 - 'git-bisect-lk2009.txt', 446 - 'git-tools.txt', 444 + 'ToolsForGit.adoc', 445 + 'git-bisect-lk2009.adoc', 446 + 'git-tools.adoc', 447 447 ] 448 448 449 449 foreach article : articles ··· 475 475 # Sanity check that we are not missing any tests present in 't/'. This check 476 476 # only runs once at configure time and is thus best-effort, only. Furthermore, 477 477 # it only verifies man pages for the sake of simplicity. 478 - configured_manpages = manpages.keys() + [ 'git-bisect-lk2009.txt', 'git-tools.txt' ] 479 - actual_manpages = run_command(shell, '-c', 'ls git*.txt scalar.txt', 478 + configured_manpages = manpages.keys() + [ 'git-bisect-lk2009.adoc', 'git-tools.adoc' ] 479 + actual_manpages = run_command(shell, '-c', 'ls git*.adoc scalar.adoc', 480 480 check: true, 481 481 env: script_environment, 482 482 ).stdout().strip().split('\n')
Documentation/object-format-disclaimer.txt Documentation/object-format-disclaimer.adoc
Documentation/pretty-formats.txt Documentation/pretty-formats.adoc
Documentation/pretty-options.txt Documentation/pretty-options.adoc
Documentation/pull-fetch-param.txt Documentation/pull-fetch-param.adoc
Documentation/ref-reachability-filters.txt Documentation/ref-reachability-filters.adoc
Documentation/ref-storage-format.txt Documentation/ref-storage-format.adoc
Documentation/rerere-options.txt Documentation/rerere-options.adoc
Documentation/rev-list-description.txt Documentation/rev-list-description.adoc
+1 -1
Documentation/rev-list-options.txt Documentation/rev-list-options.adoc
··· 1059 1059 linkgit:git-show[1], and linkgit:git-whatchanged[1] 1060 1060 endif::git-rev-list[] 1061 1061 1062 - include::pretty-options.txt[] 1062 + include::pretty-options.adoc[] 1063 1063 1064 1064 --relative-date:: 1065 1065 Synonym for `--date=relative`.
Documentation/revisions.txt Documentation/revisions.adoc
Documentation/scalar.txt Documentation/scalar.adoc
Documentation/sequencer.txt Documentation/sequencer.adoc
Documentation/signoff-option.txt Documentation/signoff-option.adoc
Documentation/technical/api-error-handling.txt Documentation/technical/api-error-handling.adoc
Documentation/technical/api-index-skel.txt Documentation/technical/api-index-skel.adoc
+4 -4
Documentation/technical/api-index.sh
··· 13 13 cd "$SOURCE_DIR" 14 14 15 15 c=//////////////////////////////////////////////////////////////// 16 - skel=api-index-skel.txt 16 + skel=api-index-skel.adoc 17 17 sed -e '/^\/\/ table of contents begin/q' "$skel" 18 18 echo "$c" 19 19 20 - ls api-*.txt | 20 + ls api-*.adoc | 21 21 while read filename 22 22 do 23 23 case "$filename" in 24 - api-index-skel.txt | api-index.txt) continue ;; 24 + api-index-skel.adoc | api-index.adoc) continue ;; 25 25 esac 26 26 title=$(sed -e 1q "$filename") 27 - html=${filename%.txt}.html 27 + html=${filename%.adoc}.html 28 28 echo "* link:$html[$title]" 29 29 done 30 30 echo "$c"
Documentation/technical/api-merge.txt Documentation/technical/api-merge.adoc
Documentation/technical/api-parse-options.txt Documentation/technical/api-parse-options.adoc
Documentation/technical/api-simple-ipc.txt Documentation/technical/api-simple-ipc.adoc
+1 -1
Documentation/technical/api-trace2.txt Documentation/technical/api-trace2.adoc
··· 140 140 To enable a target, set the corresponding environment variable or 141 141 system or global config value to one of the following: 142 142 143 - include::../trace2-target-values.txt[] 143 + include::../trace2-target-values.adoc[] 144 144 145 145 When trace files are written to a target directory, they will be named according 146 146 to the last component of the SID (optionally followed by a counter to avoid
Documentation/technical/bitmap-format.txt Documentation/technical/bitmap-format.adoc
Documentation/technical/build-systems.txt Documentation/technical/build-systems.adoc
Documentation/technical/bundle-uri.txt Documentation/technical/bundle-uri.adoc
Documentation/technical/commit-graph.txt Documentation/technical/commit-graph.adoc
Documentation/technical/directory-rename-detection.txt Documentation/technical/directory-rename-detection.adoc
Documentation/technical/hash-function-transition.txt Documentation/technical/hash-function-transition.adoc
Documentation/technical/long-running-process-protocol.txt Documentation/technical/long-running-process-protocol.adoc
Documentation/technical/multi-pack-index.txt Documentation/technical/multi-pack-index.adoc
Documentation/technical/pack-heuristics.txt Documentation/technical/pack-heuristics.adoc
Documentation/technical/packfile-uri.txt Documentation/technical/packfile-uri.adoc
Documentation/technical/parallel-checkout.txt Documentation/technical/parallel-checkout.adoc
Documentation/technical/partial-clone.txt Documentation/technical/partial-clone.adoc
Documentation/technical/platform-support.txt Documentation/technical/platform-support.adoc
Documentation/technical/racy-git.txt Documentation/technical/racy-git.adoc
Documentation/technical/reftable.txt Documentation/technical/reftable.adoc
Documentation/technical/remembering-renames.txt Documentation/technical/remembering-renames.adoc
Documentation/technical/repository-version.txt Documentation/technical/repository-version.adoc
Documentation/technical/rerere.txt Documentation/technical/rerere.adoc
Documentation/technical/scalar.txt Documentation/technical/scalar.adoc
Documentation/technical/send-pack-pipeline.txt Documentation/technical/send-pack-pipeline.adoc
Documentation/technical/shallow.txt Documentation/technical/shallow.adoc
Documentation/technical/sparse-checkout.txt Documentation/technical/sparse-checkout.adoc
Documentation/technical/sparse-index.txt Documentation/technical/sparse-index.adoc
Documentation/technical/trivial-merge.txt Documentation/technical/trivial-merge.adoc
Documentation/technical/unit-tests.txt Documentation/technical/unit-tests.adoc
Documentation/trace2-target-values.txt Documentation/trace2-target-values.adoc
Documentation/transfer-data-leaks.txt Documentation/transfer-data-leaks.adoc
+1 -1
Documentation/urls-remotes.txt Documentation/urls-remotes.adoc
··· 1 - include::urls.txt[] 1 + include::urls.adoc[] 2 2 3 3 REMOTES[[REMOTES]] 4 4 ------------------
Documentation/urls.txt Documentation/urls.adoc
+1 -1
Documentation/user-manual.txt Documentation/user-manual.adoc
··· 4354 4354 [[git-explained]] 4355 4355 === Git explained 4356 4356 4357 - include::glossary-content.txt[] 4357 + include::glossary-content.adoc[] 4358 4358 4359 4359 [[git-quick-start]] 4360 4360 [appendix]
+3 -3
Makefile
··· 2528 2528 2529 2529 config-list.h: generate-configlist.sh 2530 2530 2531 - config-list.h: Documentation/*config.txt Documentation/config/*.txt 2531 + config-list.h: Documentation/*config.adoc Documentation/config/*.adoc 2532 2532 $(QUIET_GEN)$(SHELL_PATH) ./generate-configlist.sh . $@ 2533 2533 2534 2534 command-list.h: generate-cmdlist.sh command-list.txt 2535 2535 2536 - command-list.h: $(wildcard Documentation/git*.txt) 2536 + command-list.h: $(wildcard Documentation/git*.adoc) 2537 2537 $(QUIET_GEN)$(SHELL_PATH) ./generate-cmdlist.sh \ 2538 2538 $(patsubst %,--exclude-program %,$(EXCLUDED_PROGRAMS)) \ 2539 2539 . $@ 2540 2540 2541 - hook-list.h: generate-hooklist.sh Documentation/githooks.txt 2541 + hook-list.h: generate-hooklist.sh Documentation/githooks.adoc 2542 2542 $(QUIET_GEN)$(SHELL_PATH) ./generate-hooklist.sh . $@ 2543 2543 2544 2544 SCRIPT_DEFINES = $(SHELL_PATH_SQ):$(DIFF_SQ):\
+1 -1
RelNotes
··· 1 - Documentation/RelNotes/2.49.0.txt 1 + Documentation/RelNotes/2.49.0.adoc
+1 -1
generate-cmdlist.sh
··· 76 76 break 77 77 ;; 78 78 esac 79 - done <"$1/Documentation/$cmd.txt" 79 + done <"$1/Documentation/$cmd.adoc" 80 80 81 81 printf '\t{ "%s", N_("%s"), 0' "$cmd" "$synopsis" 82 82 printf " | CAT_%s" $rest
+1 -1
generate-configlist.sh
··· 13 13 cat <<EOF 14 14 static const char *config_name_list[] = { 15 15 EOF 16 - grep -h '^[a-zA-Z].*\..*::$' "$SOURCE_DIR"/Documentation/*config.txt "$SOURCE_DIR"/Documentation/config/*.txt | 16 + grep -h '^[a-zA-Z].*\..*::$' "$SOURCE_DIR"/Documentation/*config.adoc "$SOURCE_DIR"/Documentation/config/*.adoc | 17 17 sed '/deprecated/d; s/::$//; s/, */\n/g' | 18 18 sort | 19 19 sed 's/^.*$/ "&",/'
+1 -1
generate-hooklist.sh
··· 22 22 sed -n \ 23 23 -e '/^~~~~*$/ {x; s/^.*$/ "&",/; p;}' \ 24 24 -e 'x' \ 25 - <"$SOURCE_DIR"/Documentation/githooks.txt | 25 + <"$SOURCE_DIR"/Documentation/githooks.adoc | 26 26 LC_ALL=C sort 27 27 28 28 cat <<EOF
+1 -1
meson.build
··· 626 626 ) 627 627 628 628 libgit_sources += custom_target( 629 - input: 'Documentation/githooks.txt', 629 + input: 'Documentation/githooks.adoc', 630 630 output: 'hook-list.h', 631 631 command: [ 632 632 shell,