diff options
author | Brandon Williams <bmwill@google.com> | 2017-06-22 11:43:48 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-06-23 18:24:34 -0700 |
commit | 188dce131fa95d85ddc024a1bc7d2b7fc5da4424 (patch) | |
tree | 8d11c1a30abdb16862660b85dd5066b8b6ddfa54 /git.c | |
parent | 96dc883b3cdae83d0499b26c588fcb762361fd95 (diff) | |
download | git-188dce131fa95d85ddc024a1bc7d2b7fc5da4424.tar.gz |
ls-files: use repository objectbw/repo-object
Convert ls-files to use a repository struct and recurse submodules
inprocess.
Signed-off-by: Brandon Williams <bmwill@google.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'git.c')
-rw-r--r-- | git.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -400,7 +400,7 @@ static struct cmd_struct commands[] = { { "init-db", cmd_init_db }, { "interpret-trailers", cmd_interpret_trailers, RUN_SETUP_GENTLY }, { "log", cmd_log, RUN_SETUP }, - { "ls-files", cmd_ls_files, RUN_SETUP | SUPPORT_SUPER_PREFIX }, + { "ls-files", cmd_ls_files, RUN_SETUP }, { "ls-remote", cmd_ls_remote, RUN_SETUP_GENTLY }, { "ls-tree", cmd_ls_tree, RUN_SETUP }, { "mailinfo", cmd_mailinfo, RUN_SETUP_GENTLY }, |