2 * GIT - The information manager from hell
4 * Copyright (C) Linus Torvalds, 2005
11 static int line_termination
= '\n';
12 #define LS_RECURSIVE 1
13 #define LS_TREE_ONLY 2
14 #define LS_SHOW_TREES 4
15 #define LS_NAME_ONLY 8
16 static int abbrev
= 0;
17 static int ls_options
= 0;
18 const char **pathspec
;
19 static int chomp_prefix
= 0;
20 static const char *prefix
;
22 static const char ls_tree_usage
[] =
23 "git-ls-tree [-d] [-r] [-t] [-z] [--name-only] [--name-status] [--full-name] [--abbrev[=<n>]] <tree-ish> [path...]";
25 static int show_recursive(const char *base
, int baselen
, const char *pathname
)
29 if (ls_options
& LS_RECURSIVE
)
37 const char *spec
= *s
++;
42 if (strncmp(base
, spec
, baselen
))
44 len
= strlen(pathname
);
46 speclen
= strlen(spec
);
49 if (memcmp(pathname
, spec
, len
))
55 static int show_tree(unsigned char *sha1
, const char *base
, int baselen
,
56 const char *pathname
, unsigned mode
, int stage
)
59 const char *type
= "blob";
62 if (show_recursive(base
, baselen
, pathname
)) {
63 retval
= READ_TREE_RECURSIVE
;
64 if (!(ls_options
& LS_SHOW_TREES
))
69 else if (ls_options
& LS_TREE_ONLY
)
73 (baselen
< chomp_prefix
|| memcmp(prefix
, base
, chomp_prefix
)))
76 if (!(ls_options
& LS_NAME_ONLY
))
77 printf("%06o %s %s\t", mode
, type
,
78 abbrev
? find_unique_abbrev(sha1
,abbrev
)
80 write_name_quoted(base
+ chomp_prefix
, baselen
- chomp_prefix
,
82 line_termination
, stdout
);
83 putchar(line_termination
);
87 int main(int argc
, const char **argv
)
89 unsigned char sha1
[20];
92 prefix
= setup_git_directory();
93 if (prefix
&& *prefix
)
94 chomp_prefix
= strlen(prefix
);
95 while (1 < argc
&& argv
[1][0] == '-') {
101 ls_options
|= LS_RECURSIVE
;
104 ls_options
|= LS_TREE_ONLY
;
107 ls_options
|= LS_SHOW_TREES
;
110 if (!strcmp(argv
[1]+2, "name-only") ||
111 !strcmp(argv
[1]+2, "name-status")) {
112 ls_options
|= LS_NAME_ONLY
;
115 if (!strcmp(argv
[1]+2, "full-name")) {
119 if (!strncmp(argv
[1]+2, "abbrev=",7)) {
120 abbrev
= strtoul(argv
[1]+9, NULL
, 10);
121 if (abbrev
&& abbrev
< MINIMUM_ABBREV
)
122 abbrev
= MINIMUM_ABBREV
;
123 else if (abbrev
> 40)
127 if (!strcmp(argv
[1]+2, "abbrev")) {
128 abbrev
= DEFAULT_ABBREV
;
131 /* otherwise fallthru */
133 usage(ls_tree_usage
);
137 /* -d -r should imply -t, but -d by itself should not have to. */
138 if ( (LS_TREE_ONLY
|LS_RECURSIVE
) ==
139 ((LS_TREE_ONLY
|LS_RECURSIVE
) & ls_options
))
140 ls_options
|= LS_SHOW_TREES
;
143 usage(ls_tree_usage
);
144 if (get_sha1(argv
[1], sha1
) < 0)
145 usage(ls_tree_usage
);
147 pathspec
= get_pathspec(prefix
, argv
+ 2);
148 tree
= parse_tree_indirect(sha1
);
150 die("not a tree object");
151 read_tree_recursive(tree
, "", 0, 0, pathspec
, show_tree
);