diff options
author | Petr Baudis <pasky@ucw.cz> | 2005-04-13 02:39:33 -0700 |
---|---|---|
committer | Petr Baudis <xpasky@machine> | 2005-04-13 02:39:33 -0700 |
commit | 35bb47855d8a102deda07cfc1732095f45318c02 (patch) | |
tree | 41bcaba0309c151fb38f82135d9b011e2066d130 /diff-tree.c | |
parent | 5ade862839133563d588627f17cde7d4c4f0f6f2 (diff) | |
download | git-35bb47855d8a102deda07cfc1732095f45318c02.tar.gz git-35bb47855d8a102deda07cfc1732095f45318c02.tar.xz |
[PATCH] diff-tree usage
Fix diff-tree usage, since it takes -r instead of -R now.
Signed-off-by: Petr Baudis <pasky@ucw.cz>
Diffstat (limited to 'diff-tree.c')
-rw-r--r-- | diff-tree.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/diff-tree.c b/diff-tree.c index 2709f06ba..4b9438c29 100644 --- a/diff-tree.c +++ b/diff-tree.c @@ -184,7 +184,7 @@ int main(int argc, char **argv) recursive = 1; continue; } - usage("diff-tree [-R] <tree sha1> <tree sha1>"); + usage("diff-tree [-r] <tree sha1> <tree sha1>"); } if (argc != 3 || get_sha1_hex(argv[1], old) || get_sha1_hex(argv[2], new)) |