diff options
author | Junio C Hamano <junkio@cox.net> | 2005-04-27 16:25:59 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-27 16:25:59 -0700 |
commit | 3a663fd9842aaa9e232ab43a811d11f1d7f0b7bc (patch) | |
tree | 89fdfd09b281fdf5071bc13a30ef683bd6851b61 | |
parent | [PATCH] Use diff-tree -p -r instead of "git diff" in git-export. (diff) | |
download | tgif-3a663fd9842aaa9e232ab43a811d11f1d7f0b7bc.tar.xz |
[PATCH] diff-tree -p implies diff-tree -p -r
This makes diff-tree -p imply recursive behaviour.
Other commands in the family always takes a flat universe view
so this is not even needed.
Signed-off-by: Junio C Hamano <junkio@cox.net>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
-rw-r--r-- | diff-tree.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/diff-tree.c b/diff-tree.c index cbea28d6ea..5a1ad34652 100644 --- a/diff-tree.c +++ b/diff-tree.c @@ -269,7 +269,7 @@ int main(int argc, char **argv) continue; } if (!strcmp(arg, "-p")) { - generate_patch = 1; + recursive = generate_patch = 1; continue; } if (!strcmp(arg, "-z")) { |