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-tree.c | |
parent | 52f28529f4f90cebdca47f8eacbff5cb20004bed (diff) | |
download | git-dda2d79af2d2858b37bab7f6e088d0730c0959d1.tar.gz git-dda2d79af2d2858b37bab7f6e088d0730c0959d1.tar.xz |
[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-tree.c')
-rw-r--r-- | diff-tree.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/diff-tree.c b/diff-tree.c index f499d2ead..4e80526af 100644 --- a/diff-tree.c +++ b/diff-tree.c @@ -395,7 +395,9 @@ static int diff_tree_stdin(char *line) } static char *diff_tree_usage = -"git-diff-tree [-p] [-r] [-z] [--stdin] [-m] [-s] [-v] [--pretty] [-t] [-R] [-B] [-M] [-C] [--find-copies-header] [-O<orderfile>] [-S<string>] [--pickaxe-all] <tree-ish> <tree-ish>"; +"git-diff-tree [--stdin] [-m] [-s] [-v] [--pretty] [-t] " +"[<common diff options>] <tree-ish> <tree-ish>" +COMMON_DIFF_OPTIONS_HELP; int main(int argc, const char **argv) { |