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.
This commit is contained in:
Linus Torvalds 2005-04-11 08:37:17 -07:00
parent 91af81a98e
commit bf16c71e2f
2 changed files with 4 additions and 4 deletions

View File

@ -144,9 +144,9 @@ int main(int argc, char **argv)
time(&now);
realdate = ctime(&now);
gecos = getenv("COMMITTER_NAME") ? : realgecos;
email = getenv("COMMITTER_EMAIL") ? : realemail;
date = getenv("COMMITTER_DATE") ? : realdate;
gecos = getenv("AUTHOR_NAME") ? : realgecos;
email = getenv("AUTHOR_EMAIL") ? : realemail;
date = getenv("AUTHOR_DATE") ? : realdate;
remove_special(gecos); remove_special(realgecos);
remove_special(email); remove_special(realemail);

View File

@ -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;
}