~ubuntu-branches/ubuntu/intrepid/git-core/intrepid-security

« back to all changes in this revision

Viewing changes to Documentation/git-mailsplit.txt

  • Committer: Package Import Robot
  • Author(s): Gerrit Pape
  • Date: 2007-10-04 08:27:01 UTC
  • mfrom: (1.1.23)
  • Revision ID: package-import@ubuntu.com-20071004082701-rsd058ontoqz4i30
Tags: 1:1.5.3.4-1
new upstream point release (closes: #445188).

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
 
8
8
SYNOPSIS
9
9
--------
10
 
'git-mailsplit' [-b] [-f<nn>] [-d<prec>] -o<directory> [--] [<mbox>...]
 
10
'git-mailsplit' [-b] [-f<nn>] [-d<prec>] -o<directory> [--] [<mbox>|<Maildir>...]
11
11
 
12
12
DESCRIPTION
13
13
-----------
14
 
Splits a mbox file into a list of files: "0001" "0002" ..  in the specified
15
 
directory so you can process them further from there.
 
14
Splits a mbox file or a Maildir into a list of files: "0001" "0002" ..  in the
 
15
specified directory so you can process them further from there.
 
16
 
 
17
IMPORTANT: Maildir splitting relies upon filenames being sorted to output
 
18
patches in the correct order.
16
19
 
17
20
OPTIONS
18
21
-------
20
23
        Mbox file to split.  If not given, the mbox is read from
21
24
        the standard input.
22
25
 
 
26
<Maildir>::
 
27
        Root of the Maildir to split. This directory should contain the cur, tmp
 
28
        and new subdirectories.
 
29
 
23
30
<directory>::
24
31
        Directory in which to place the individual messages.
25
32
 
49
56
GIT
50
57
---
51
58
Part of the gitlink:git[7] suite
52