Remove unnecessary git-subtree files
Remove various files that simply duplicate functionality already provided by the main project files. Signed-off-by: David A. Greene <greened@obbligato.org>maint
parent
603ee0f0c3
commit
c96c5383ff
|
|
@ -1,91 +0,0 @@
|
||||||
## linkgit: macro
|
|
||||||
#
|
|
||||||
# Usage: linkgit:command[manpage-section]
|
|
||||||
#
|
|
||||||
# Note, {0} is the manpage section, while {target} is the command.
|
|
||||||
#
|
|
||||||
# Show GIT link as: <command>(<section>); if section is defined, else just show
|
|
||||||
# the command.
|
|
||||||
|
|
||||||
[macros]
|
|
||||||
(?su)[\\]?(?P<name>linkgit):(?P<target>\S*?)\[(?P<attrlist>.*?)\]=
|
|
||||||
|
|
||||||
[attributes]
|
|
||||||
asterisk=*
|
|
||||||
plus=+
|
|
||||||
caret=^
|
|
||||||
startsb=[
|
|
||||||
endsb=]
|
|
||||||
tilde=~
|
|
||||||
|
|
||||||
ifdef::backend-docbook[]
|
|
||||||
[linkgit-inlinemacro]
|
|
||||||
{0%{target}}
|
|
||||||
{0#<citerefentry>}
|
|
||||||
{0#<refentrytitle>{target}</refentrytitle><manvolnum>{0}</manvolnum>}
|
|
||||||
{0#</citerefentry>}
|
|
||||||
endif::backend-docbook[]
|
|
||||||
|
|
||||||
ifdef::backend-docbook[]
|
|
||||||
ifndef::git-asciidoc-no-roff[]
|
|
||||||
# "unbreak" docbook-xsl v1.68 for manpages. v1.69 works with or without this.
|
|
||||||
# v1.72 breaks with this because it replaces dots not in roff requests.
|
|
||||||
[listingblock]
|
|
||||||
<example><title>{title}</title>
|
|
||||||
<literallayout>
|
|
||||||
ifdef::doctype-manpage[]
|
|
||||||
.ft C
|
|
||||||
endif::doctype-manpage[]
|
|
||||||
|
|
|
||||||
ifdef::doctype-manpage[]
|
|
||||||
.ft
|
|
||||||
endif::doctype-manpage[]
|
|
||||||
</literallayout>
|
|
||||||
{title#}</example>
|
|
||||||
endif::git-asciidoc-no-roff[]
|
|
||||||
|
|
||||||
ifdef::git-asciidoc-no-roff[]
|
|
||||||
ifdef::doctype-manpage[]
|
|
||||||
# The following two small workarounds insert a simple paragraph after screen
|
|
||||||
[listingblock]
|
|
||||||
<example><title>{title}</title>
|
|
||||||
<literallayout>
|
|
||||||
|
|
|
||||||
</literallayout><simpara></simpara>
|
|
||||||
{title#}</example>
|
|
||||||
|
|
||||||
[verseblock]
|
|
||||||
<formalpara{id? id="{id}"}><title>{title}</title><para>
|
|
||||||
{title%}<literallayout{id? id="{id}"}>
|
|
||||||
{title#}<literallayout>
|
|
||||||
|
|
|
||||||
</literallayout>
|
|
||||||
{title#}</para></formalpara>
|
|
||||||
{title%}<simpara></simpara>
|
|
||||||
endif::doctype-manpage[]
|
|
||||||
endif::git-asciidoc-no-roff[]
|
|
||||||
endif::backend-docbook[]
|
|
||||||
|
|
||||||
ifdef::doctype-manpage[]
|
|
||||||
ifdef::backend-docbook[]
|
|
||||||
[header]
|
|
||||||
template::[header-declarations]
|
|
||||||
<refentry>
|
|
||||||
<refmeta>
|
|
||||||
<refentrytitle>{mantitle}</refentrytitle>
|
|
||||||
<manvolnum>{manvolnum}</manvolnum>
|
|
||||||
<refmiscinfo class="source">Git</refmiscinfo>
|
|
||||||
<refmiscinfo class="version">{git_version}</refmiscinfo>
|
|
||||||
<refmiscinfo class="manual">Git Manual</refmiscinfo>
|
|
||||||
</refmeta>
|
|
||||||
<refnamediv>
|
|
||||||
<refname>{manname}</refname>
|
|
||||||
<refpurpose>{manpurpose}</refpurpose>
|
|
||||||
</refnamediv>
|
|
||||||
endif::backend-docbook[]
|
|
||||||
endif::doctype-manpage[]
|
|
||||||
|
|
||||||
ifdef::backend-xhtml11[]
|
|
||||||
[linkgit-inlinemacro]
|
|
||||||
<a href="{target}.html">{target}{0?({0})}</a>
|
|
||||||
endif::backend-xhtml11[]
|
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
git-subtree.sh
|
|
||||||
|
|
@ -1,2 +0,0 @@
|
||||||
# copy Git to where the rest of the Git scripts are found.
|
|
||||||
cp git-subtree.sh "$(git --exec-path)"/git-subtree
|
|
||||||
|
|
@ -1,35 +0,0 @@
|
||||||
<!-- manpage-base.xsl:
|
|
||||||
special formatting for manpages rendered from asciidoc+docbook -->
|
|
||||||
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
|
||||||
version="1.0">
|
|
||||||
|
|
||||||
<!-- these params silence some output from xmlto -->
|
|
||||||
<xsl:param name="man.output.quietly" select="1"/>
|
|
||||||
<xsl:param name="refentry.meta.get.quietly" select="1"/>
|
|
||||||
|
|
||||||
<!-- convert asciidoc callouts to man page format;
|
|
||||||
git.docbook.backslash and git.docbook.dot params
|
|
||||||
must be supplied by another XSL file or other means -->
|
|
||||||
<xsl:template match="co">
|
|
||||||
<xsl:value-of select="concat(
|
|
||||||
$git.docbook.backslash,'fB(',
|
|
||||||
substring-after(@id,'-'),')',
|
|
||||||
$git.docbook.backslash,'fR')"/>
|
|
||||||
</xsl:template>
|
|
||||||
<xsl:template match="calloutlist">
|
|
||||||
<xsl:value-of select="$git.docbook.dot"/>
|
|
||||||
<xsl:text>sp </xsl:text>
|
|
||||||
<xsl:apply-templates/>
|
|
||||||
<xsl:text> </xsl:text>
|
|
||||||
</xsl:template>
|
|
||||||
<xsl:template match="callout">
|
|
||||||
<xsl:value-of select="concat(
|
|
||||||
$git.docbook.backslash,'fB',
|
|
||||||
substring-after(@arearefs,'-'),
|
|
||||||
'. ',$git.docbook.backslash,'fR')"/>
|
|
||||||
<xsl:apply-templates/>
|
|
||||||
<xsl:value-of select="$git.docbook.dot"/>
|
|
||||||
<xsl:text>br </xsl:text>
|
|
||||||
</xsl:template>
|
|
||||||
|
|
||||||
</xsl:stylesheet>
|
|
||||||
|
|
@ -1,13 +0,0 @@
|
||||||
<!-- manpage-normal.xsl:
|
|
||||||
special settings for manpages rendered from asciidoc+docbook
|
|
||||||
handles anything we want to keep away from docbook-xsl 1.72.0 -->
|
|
||||||
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
|
||||||
version="1.0">
|
|
||||||
|
|
||||||
<xsl:import href="manpage-base.xsl"/>
|
|
||||||
|
|
||||||
<!-- these are the normal values for the roff control characters -->
|
|
||||||
<xsl:param name="git.docbook.backslash">\</xsl:param>
|
|
||||||
<xsl:param name="git.docbook.dot" >.</xsl:param>
|
|
||||||
|
|
||||||
</xsl:stylesheet>
|
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
export PATH=$PWD:$PATH
|
|
||||||
Loading…
Reference in New Issue