Changeset 782 for git/branches/dmik/builtin/ls-tree.c
- Timestamp:
- Jun 23, 2014, 9:45:51 PM (11 years ago)
- Location:
- git/branches/dmik
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
git/branches/dmik ¶
- Property svn:mergeinfo changed
/git/vendor/2.0.0 (added) merged: 777 /git/vendor/current merged: 772,774,776
- Property svn:mergeinfo changed
-
TabularUnified git/branches/dmik/builtin/ls-tree.c ¶
r347 r782 11 11 #include "builtin.h" 12 12 #include "parse-options.h" 13 #include "pathspec.h" 13 14 14 15 static int line_termination = '\n'; … … 25 26 26 27 static const char * const ls_tree_usage[] = { 27 "git ls-tree [<options>] <tree-ish> [<path>...]",28 N_("git ls-tree [<options>] <tree-ish> [<path>...]"), 28 29 NULL 29 30 }; … … 36 37 return 1; 37 38 38 s = pathspec. raw;39 s = pathspec._raw; 39 40 if (!s) 40 41 return 0; … … 123 124 int i, full_tree = 0; 124 125 const struct option ls_tree_options[] = { 125 OPT_BIT('d', NULL, &ls_options, "only show trees",126 OPT_BIT('d', NULL, &ls_options, N_("only show trees"), 126 127 LS_TREE_ONLY), 127 OPT_BIT('r', NULL, &ls_options, "recurse into subtrees",128 OPT_BIT('r', NULL, &ls_options, N_("recurse into subtrees"), 128 129 LS_RECURSIVE), 129 OPT_BIT('t', NULL, &ls_options, "show trees when recursing",130 OPT_BIT('t', NULL, &ls_options, N_("show trees when recursing"), 130 131 LS_SHOW_TREES), 131 132 OPT_SET_INT('z', NULL, &line_termination, 132 "terminate entries with NUL byte", 0),133 OPT_BIT('l', "long", &ls_options, "include object size",133 N_("terminate entries with NUL byte"), 0), 134 OPT_BIT('l', "long", &ls_options, N_("include object size"), 134 135 LS_SHOW_SIZE), 135 OPT_BIT(0, "name-only", &ls_options, "list only filenames",136 OPT_BIT(0, "name-only", &ls_options, N_("list only filenames"), 136 137 LS_NAME_ONLY), 137 OPT_BIT(0, "name-status", &ls_options, "list only filenames",138 OPT_BIT(0, "name-status", &ls_options, N_("list only filenames"), 138 139 LS_NAME_ONLY), 139 140 OPT_SET_INT(0, "full-name", &chomp_prefix, 140 "use full path names", 0),141 OPT_BOOL EAN(0, "full-tree", &full_tree,142 143 "(implies --full-name)") ,141 N_("use full path names"), 0), 142 OPT_BOOL(0, "full-tree", &full_tree, 143 N_("list entire tree; not just current directory " 144 "(implies --full-name)")), 144 145 OPT__ABBREV(&abbrev), 145 146 OPT_END() … … 167 168 die("Not a valid object name %s", argv[0]); 168 169 169 init_pathspec(&pathspec, get_pathspec(prefix, argv + 1)); 170 /* 171 * show_recursive() rolls its own matching code and is 172 * generally ignorant of 'struct pathspec'. The magic mask 173 * cannot be lifted until it is converted to use 174 * match_pathspec() or tree_entry_interesting() 175 */ 176 parse_pathspec(&pathspec, PATHSPEC_GLOB | PATHSPEC_ICASE, 177 PATHSPEC_PREFER_CWD, 178 prefix, argv + 1); 170 179 for (i = 0; i < pathspec.nr; i++) 171 pathspec.items[i]. use_wildcard = 0;180 pathspec.items[i].nowildcard_len = pathspec.items[i].len; 172 181 pathspec.has_wildcard = 0; 173 182 tree = parse_tree_indirect(sha1);
Note:
See TracChangeset
for help on using the changeset viewer.