summaryrefslogtreecommitdiff
path: root/builtin-ls-tree.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2009-01-28 23:42:15 -0800
committerJunio C Hamano <gitster@pobox.com>2009-01-28 23:42:15 -0800
commit32fe02793193c309fb9739b24d8450caab80783f (patch)
treeca8943d89250b664813ce5b8fa15f0e24741429d /builtin-ls-tree.c
parent8e7d1f6d0300b47770930b82a5fc20fec73727c4 (diff)
parente1a59774077e21fc9862a968440dd23003345b4a (diff)
downloadgit-32fe02793193c309fb9739b24d8450caab80783f.tar.gz
Merge branch 'jc/maint-ls-tree' into maint
* jc/maint-ls-tree: Document git-ls-tree --full-tree ls-tree: add --full-tree option
Diffstat (limited to 'builtin-ls-tree.c')
-rw-r--r--builtin-ls-tree.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/builtin-ls-tree.c b/builtin-ls-tree.c
index cb61717685..5b63e6eada 100644
--- a/builtin-ls-tree.c
+++ b/builtin-ls-tree.c
@@ -23,7 +23,7 @@ static int chomp_prefix;
static const char *ls_tree_prefix;
static const char ls_tree_usage[] =
- "git ls-tree [-d] [-r] [-t] [-l] [-z] [--name-only] [--name-status] [--full-name] [--abbrev[=<n>]] <tree-ish> [path...]";
+ "git ls-tree [-d] [-r] [-t] [-l] [-z] [--name-only] [--name-status] [--full-name] [--full-tree] [--abbrev[=<n>]] <tree-ish> [path...]";
static int show_recursive(const char *base, int baselen, const char *pathname)
{
@@ -156,6 +156,11 @@ int cmd_ls_tree(int argc, const char **argv, const char *prefix)
chomp_prefix = 0;
break;
}
+ if (!strcmp(argv[1]+2, "full-tree")) {
+ ls_tree_prefix = prefix = NULL;
+ chomp_prefix = 0;
+ break;
+ }
if (!prefixcmp(argv[1]+2, "abbrev=")) {
abbrev = strtoul(argv[1]+9, NULL, 10);
if (abbrev && abbrev < MINIMUM_ABBREV)