On Tue, 7 Feb 2006, Linus Torvalds wrote: > > Just a heads up. I'll try to track down what the breakage is. Ahh. Very simple. The "--cc" implies "-p", but without the recursive part. Linus ---- diff --git a/diff-tree.c b/diff-tree.c index f3280a1..7148323 100644 --- a/diff-tree.c +++ b/diff-tree.c @@ -284,14 +284,15 @@ int main(int argc, const char **argv) } usage(diff_tree_usage); } - if (diff_options.output_format == DIFF_FORMAT_PATCH) - diff_options.recursive = 1; if (combine_merges) { diff_options.output_format = DIFF_FORMAT_PATCH; ignore_merges = 0; } + if (diff_options.output_format == DIFF_FORMAT_PATCH) + diff_options.recursive = 1; + diff_tree_setup_paths(get_pathspec(prefix, argv)); diff_setup_done(&diff_options); - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.htmlReceived on Wed Feb 08 05:27:57 2006
This archive was generated by hypermail 2.1.8 : 2006-02-08 05:28:06 EST