diff options
author | H. Peter Anvin <hpa@zytor.com> | 2005-12-13 22:39:23 -0800 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2005-12-14 02:04:56 -0800 |
commit | b3f041fb0f7de167dbb6711b0a231d36c4b5de08 (patch) | |
tree | c30a6e87fd931d0ac5195aa1dc1910d21fc19ccd /Documentation/git-mailsplit.txt | |
parent | 01f49e3453d9960fec62d93bc3a66784f1be4c26 (diff) | |
download | git-b3f041fb0f7de167dbb6711b0a231d36c4b5de08.tar.gz |
git-am support for naked email messages (take 2)
This allows git-am to accept single-message files as well as mboxes.
Unlike the previous version, this one doesn't need to be explicitly told
which one it is; rather, it looks to see if the first line is a From
line and uses it to select mbox mode or not.
I moved the logic to do all this into git-mailsplit, which got a new
user interface as result, although the old interface is still available
for backwards compatibility.
[jc: applied with two obvious fixes.]
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'Documentation/git-mailsplit.txt')
-rw-r--r-- | Documentation/git-mailsplit.txt | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/Documentation/git-mailsplit.txt b/Documentation/git-mailsplit.txt index 03a9477664..e0703e9dfa 100644 --- a/Documentation/git-mailsplit.txt +++ b/Documentation/git-mailsplit.txt @@ -7,7 +7,7 @@ git-mailsplit - Totally braindamaged mbox splitter program. SYNOPSIS -------- -'git-mailsplit' [-d<prec>] [<mbox>] <directory> +'git-mailsplit' [-b] [-f<nn>] [-d<prec>] -o<directory> [--] [<mbox>...] DESCRIPTION ----------- @@ -23,11 +23,18 @@ OPTIONS <directory>:: Directory in which to place the individual messages. +-b:: + If any file doesn't begin with a From line, assume it is a + single mail message instead of signalling error. + -d<prec>:: Instead of the default 4 digits with leading zeros, different precision can be specified for the generated filenames. +-f<nn>:: + Skip the first <nn> numbers, for example if -f3 is specified, + start the numbering with 0004. Author ------ |