1
0
Fork 0
mirror of https://github.com/git/git.git synced 2024-06-03 06:26:10 +02:00

format-patch: fix diff format option implementation

The updates forgot to make the diff go recursive.
This commit is contained in:
Junio C Hamano 2006-06-29 00:18:52 -07:00
parent f252281102
commit 27e1b127f3

View File

@ -179,7 +179,8 @@ int cmd_format_patch(int argc, const char **argv, char **envp)
rev.diff = 1;
rev.combine_merges = 0;
rev.ignore_merges = 1;
rev.diffopt.msg_sep = "---\n";
rev.diffopt.msg_sep = "";
rev.diffopt.recursive = 1;
git_config(git_format_config);
rev.extra_headers = extra_headers;