Ignore:
Timestamp:
Jun 23, 2014, 9:45:51 PM (11 years ago)
Author:
dmik
Message:

git: Merge version 2.0.0 from vendor to dmik branch.

Location:
git/branches/dmik
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • git/branches/dmik

  • TabularUnified git/branches/dmik/builtin/ls-tree.c

    r347 r782  
    1111#include "builtin.h"
    1212#include "parse-options.h"
     13#include "pathspec.h"
    1314
    1415static int line_termination = '\n';
     
    2526
    2627static const  char * const ls_tree_usage[] = {
    27         "git ls-tree [<options>] <tree-ish> [<path>...]",
     28        N_("git ls-tree [<options>] <tree-ish> [<path>...]"),
    2829        NULL
    2930};
     
    3637                return 1;
    3738
    38         s = pathspec.raw;
     39        s = pathspec._raw;
    3940        if (!s)
    4041                return 0;
     
    123124        int i, full_tree = 0;
    124125        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"),
    126127                        LS_TREE_ONLY),
    127                 OPT_BIT('r', NULL, &ls_options, "recurse into subtrees",
     128                OPT_BIT('r', NULL, &ls_options, N_("recurse into subtrees"),
    128129                        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"),
    130131                        LS_SHOW_TREES),
    131132                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"),
    134135                        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"),
    136137                        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"),
    138139                        LS_NAME_ONLY),
    139140                OPT_SET_INT(0, "full-name", &chomp_prefix,
    140                             "use full path names", 0),
    141                 OPT_BOOLEAN(0, "full-tree", &full_tree,
    142                             "list entire tree; not just current directory "
    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)")),
    144145                OPT__ABBREV(&abbrev),
    145146                OPT_END()
     
    167168                die("Not a valid object name %s", argv[0]);
    168169
    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);
    170179        for (i = 0; i < pathspec.nr; i++)
    171                 pathspec.items[i].use_wildcard = 0;
     180                pathspec.items[i].nowildcard_len = pathspec.items[i].len;
    172181        pathspec.has_wildcard = 0;
    173182        tree = parse_tree_indirect(sha1);
Note: See TracChangeset for help on using the changeset viewer.