diff --git a/Documentation/git-diff-helper.txt b/Documentation/git-diff-helper.txt index 58f27172a9..f879ed9892 100644 --- a/Documentation/git-diff-helper.txt +++ b/Documentation/git-diff-helper.txt @@ -1,15 +1,15 @@ -git-diff-tree-helper(1) +git-diff-helper(1) ======================= v0.1, May 2005 NAME ---- -git-diff-tree-helper - Generates patch format output for git-diff-* +git-diff-helper - Generates patch format output for git-diff-* SYNOPSIS -------- -'git-diff-tree-helper' [-z] [-R] +'git-diff-helper' [-z] [-R] DESCRIPTION ----------- @@ -26,8 +26,8 @@ OPTIONS "git-diff-cache" which always compares tree with cache or working file. E.g. - git-diff-cache | git-diff-tree-helper -R file.c -+ + git-diff-cache | git-diff-helper -R file.c + would show a diff to bring the working file back to what is in the . See Also diff --git a/diff-helper.c b/diff-helper.c index 51bb658be4..cd0bad06ba 100644 --- a/diff-helper.c +++ b/diff-helper.c @@ -45,8 +45,8 @@ static int parse_oneside_change(const char *cp, struct diff_spec *one, return 0; } -static int parse_diff_tree_output(const char *buf, - const char **spec, int cnt, int reverse) +static int parse_diff_raw_output(const char *buf, + const char **spec, int cnt, int reverse) { struct diff_spec old, new; char path[PATH_MAX]; @@ -109,8 +109,8 @@ static int parse_diff_tree_output(const char *buf, return 0; } -static const char *diff_tree_helper_usage = -"diff-tree-helper [-R] [-z] paths..."; +static const char *diff_helper_usage = +"git-diff-helper [-R] [-z] paths..."; int main(int ac, const char **av) { struct strbuf sb; @@ -125,7 +125,7 @@ int main(int ac, const char **av) { else if (av[1][1] == 'z') line_termination = 0; else - usage(diff_tree_helper_usage); + usage(diff_helper_usage); ac--; av++; } /* the remaining parameters are paths patterns */ @@ -135,7 +135,7 @@ int main(int ac, const char **av) { read_line(&sb, stdin, line_termination); if (sb.eof) break; - status = parse_diff_tree_output(sb.buf, av+1, ac-1, reverse); + status = parse_diff_raw_output(sb.buf, av+1, ac-1, reverse); if (status) fprintf(stderr, "cannot parse %s\n", sb.buf); }