aboutsummaryrefslogtreecommitdiff
path: root/Documentation
diff options
context:
space:
mode:
authorJunio C Hamano <junkio@cox.net>2007-03-02 00:31:51 -0800
committerJunio C Hamano <junkio@cox.net>2007-03-02 00:31:51 -0800
commit8b969a5fb5e5891d9ad4c236fd9487c4673bfa2a (patch)
treed3f7a259c8cbd478e5def0136fa9bf81f6ec035a /Documentation
parent112f63851bae2ff6f04092a2eb4261d6e5990c65 (diff)
parenteecc8367f4eaafc8449fc08c4e33f3f8ac474469 (diff)
downloadgit-8b969a5fb5e5891d9ad4c236fd9487c4673bfa2a.tar.gz
git-8b969a5fb5e5891d9ad4c236fd9487c4673bfa2a.tar.xz
Merge branch 'maint'
* maint: Another memory overrun in http-push.c fetch.o depends on the headers, too. Documentation: Correct minor typo in git-add documentation. Documentation/git-send-email.txt: Fix labeled list formatting Documentation/git-quiltimport.txt: Fix labeled list formatting Documentation/build-docdep.perl: Fix dependencies for included asciidoc files
Diffstat (limited to 'Documentation')
-rwxr-xr-xDocumentation/build-docdep.perl6
-rw-r--r--Documentation/git-add.txt2
-rw-r--r--Documentation/git-quiltimport.txt8
-rw-r--r--Documentation/git-send-email.txt12
4 files changed, 12 insertions, 16 deletions
diff --git a/Documentation/build-docdep.perl b/Documentation/build-docdep.perl
index 489389c32..ba4205e03 100755
--- a/Documentation/build-docdep.perl
+++ b/Documentation/build-docdep.perl
@@ -41,10 +41,6 @@ while ($changed) {
while (my ($text, $included) = each %include) {
if (! exists $included{$text} &&
(my $base = $text) =~ s/\.txt$//) {
- my ($suffix) = '1';
- if ($base eq 'git') {
- $suffix = '7'; # yuck...
- }
- print "$base.html $base.$suffix : ", join(" ", keys %$included), "\n";
+ print "$base.html $base.xml : ", join(" ", keys %$included), "\n";
}
}
diff --git a/Documentation/git-add.txt b/Documentation/git-add.txt
index b73a99d61..755d7186f 100644
--- a/Documentation/git-add.txt
+++ b/Documentation/git-add.txt
@@ -52,7 +52,7 @@ OPTIONS
-f::
Allow adding otherwise ignored files.
-\i, \--interactive::
+-i, \--interactive::
Add modified contents in the working tree interactively to
the index.
diff --git a/Documentation/git-quiltimport.txt b/Documentation/git-quiltimport.txt
index 6e9a8c369..296937a41 100644
--- a/Documentation/git-quiltimport.txt
+++ b/Documentation/git-quiltimport.txt
@@ -42,10 +42,10 @@ OPTIONS
--patches <dir>::
The directory to find the quilt patches and the
quilt series file.
-
- The default for the patch directory is patches
- or the value of the $QUILT_PATCHES environment
- variable.
++
+The default for the patch directory is patches
+or the value of the $QUILT_PATCHES environment
+variable.
Author
------
diff --git a/Documentation/git-send-email.txt b/Documentation/git-send-email.txt
index 4c8d907bd..35b0104e4 100644
--- a/Documentation/git-send-email.txt
+++ b/Documentation/git-send-email.txt
@@ -26,13 +26,13 @@ The options available are:
--bcc::
Specify a "Bcc:" value for each email.
-
- The --bcc option must be repeated for each user you want on the bcc list.
++
+The --bcc option must be repeated for each user you want on the bcc list.
--cc::
Specify a starting "Cc:" value for each email.
-
- The --cc option must be repeated for each user you want on the cc list.
++
+The --cc option must be repeated for each user you want on the cc list.
--chain-reply-to, --no-chain-reply-to::
If this is set, each email will be sent as a reply to the previous
@@ -87,8 +87,8 @@ The options available are:
Specify the primary recipient of the emails generated.
Generally, this will be the upstream maintainer of the
project involved.
-
- The --to option must be repeated for each user you want on the to list.
++
+The --to option must be repeated for each user you want on the to list.
Author