diff options
author | Junio C Hamano <junkio@cox.net> | 2005-07-13 12:52:35 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-07-13 13:09:17 -0700 |
commit | dda2d79af2d2858b37bab7f6e088d0730c0959d1 (patch) | |
tree | 0252e50a800caa678f835ee26193e5f728459f0a /diff-files.c | |
parent | 52f28529f4f90cebdca47f8eacbff5cb20004bed (diff) | |
download | git-dda2d79af2d2858b37bab7f6e088d0730c0959d1.tar.gz |
[PATCH] Clean up diff option descriptions.
I got tired of maintaining almost duplicated descriptions in
diff-* brothers, both in usage string and documentation.
Signed-off-by: Junio C Hamano <junkio@cox.net>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'diff-files.c')
-rw-r--r-- | diff-files.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/diff-files.c b/diff-files.c index 6d2aec3406..ebaf235c52 100644 --- a/diff-files.c +++ b/diff-files.c @@ -7,7 +7,9 @@ #include "diff.h" static const char *diff_files_usage = -"git-diff-files [-p] [-q] [-r] [-z] [-R] [-B] [-M] [-C] [--find-copies-harder] [-O<orderfile>] [-S<string>] [--pickaxe-all] [<path>...]"; +"git-diff-files [-q] " +"[<common diff options>] [<path>...]" +COMMON_DIFF_OPTIONS_HELP; static int diff_output_format = DIFF_FORMAT_HUMAN; static int detect_rename = 0; |