From: Junio C Hamano Date: Fri, 25 May 2007 05:01:30 +0000 (+0000) Subject: Autogenerated HTML docs for v1.5.2-73-g18bece X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=b7ed57ac09980746fe198f6afd7a72be9702ecda;p=git.git Autogenerated HTML docs for v1.5.2-73-g18bece --- diff --git a/git-am.html b/git-am.html index 9984b7728..1d643e28c 100644 --- a/git-am.html +++ b/git-am.html @@ -276,8 +276,8 @@ git-am(1) Manual Page
git-am [--signoff] [--dotest=<dir>] [--keep] [--utf8 | --no-utf8] [--3way] [--interactive] [--binary] [--whitespace=<option>] [-C<n>] [-p<n>] - <mbox>… -git-am [--skip | --resolved]
+ <mbox>|<Maildir>… +

git-am [--skip | --resolved]

DESCRIPTION

@@ -289,12 +289,13 @@ current branch.

-<mbox>… +<mbox>|<Maildir>…

The list of mailbox files to read patches from. If you do not - supply this argument, reads from the standard input. + supply this argument, reads from the standard input. If you supply + directories, they'll be treated as Maildirs.

@@ -509,7 +510,7 @@ names.

diff --git a/git-am.txt b/git-am.txt index ba79773f7..25cf84a0c 100644 --- a/git-am.txt +++ b/git-am.txt @@ -12,7 +12,8 @@ SYNOPSIS 'git-am' [--signoff] [--dotest=] [--keep] [--utf8 | --no-utf8] [--3way] [--interactive] [--binary] [--whitespace=

SYNOPSIS

-

git-mailsplit [-b] [-f<nn>] [-d<prec>] -o<directory> [--] [<mbox>…]

+

git-mailsplit [-b] [-f<nn>] [-d<prec>] -o<directory> [--] [<mbox>|<Maildir>…]

DESCRIPTION

-

Splits a mbox file into a list of files: "0001" "0002" .. in the specified -directory so you can process them further from there.

+

Splits a mbox file or a Maildir into a list of files: "0001" "0002" .. in the +specified directory so you can process them further from there.

+
+ + + +
+
Important
+
Maildir splitting relies upon filenames being sorted to output +patches in the correct order.
+

OPTIONS

@@ -292,6 +301,15 @@ directory so you can process them further from there.

+<Maildir> +
+
+

+ Root of the Maildir to split. This directory should contain the cur, tmp + and new subdirectories. +

+
+
<directory>
@@ -344,7 +362,7 @@ and Junio C Hamano <junkio@cox.net>

diff --git a/git-mailsplit.txt b/git-mailsplit.txt index c11d6a530..abb090369 100644 --- a/git-mailsplit.txt +++ b/git-mailsplit.txt @@ -7,12 +7,15 @@ git-mailsplit - Simple UNIX mbox splitter program SYNOPSIS -------- -'git-mailsplit' [-b] [-f] [-d] -o [--] [...] +'git-mailsplit' [-b] [-f] [-d] -o [--] [|...] DESCRIPTION ----------- -Splits a mbox file into a list of files: "0001" "0002" .. in the specified -directory so you can process them further from there. +Splits a mbox file or a Maildir into a list of files: "0001" "0002" .. in the +specified directory so you can process them further from there. + +IMPORTANT: Maildir splitting relies upon filenames being sorted to output +patches in the correct order. OPTIONS ------- @@ -20,6 +23,10 @@ OPTIONS Mbox file to split. If not given, the mbox is read from the standard input. +:: + Root of the Maildir to split. This directory should contain the cur, tmp + and new subdirectories. + :: Directory in which to place the individual messages.