From bf16c71e2f9fc9ca44273f7f4637dce194a49cce Mon Sep 17 00:00:00 2001 From: Linus Torvalds Date: Mon, 11 Apr 2005 08:37:17 -0700 Subject: Fix up commit-tree/diff-tree user interface issues. No, this doesn't make them easy to use, but makes diff-tree use the "-r" flag for "recursive" (not "-R") and makes commit-tree use AUTHOR_xxx environment flags (not COMMITTER_xxx) to match what it actually does. --- diff-tree.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'diff-tree.c') diff --git a/diff-tree.c b/diff-tree.c index 5cf6057f45..1960c23561 100644 --- a/diff-tree.c +++ b/diff-tree.c @@ -180,7 +180,7 @@ int main(int argc, char **argv) char *arg = argv[1]; argv++; argc--; - if (!strcmp(arg, "-R")) { + if (!strcmp(arg, "-r")) { recursive = 1; continue; } -- cgit v1.2.1