diff options
| author | Junio C Hamano <gitster@pobox.com> | 2024-09-12 11:47:23 -0700 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2024-09-12 11:47:24 -0700 |
| commit | f286e0a01c1e8c1b401d0290b8fc0f9847cfbd06 (patch) | |
| tree | ad995311fbc89a66f1f1201ee0d2be08f5a09fc0 /builtin/cat-file.c | |
| parent | b64f24972651dd7a46b0563a60c62bab7afbd68d (diff) | |
| parent | e65b0c7c36683a8634b345af1cc3dc7676b3904a (diff) | |
| download | git-f286e0a01c1e8c1b401d0290b8fc0f9847cfbd06.tar.gz | |
Merge branch 'kl/cat-file-on-sparse-index'
"git cat-file" works well with the sparse-index, and gets marked as
such.
* kl/cat-file-on-sparse-index:
builtin/cat-file: mark 'git cat-file' sparse-index compatible
t1092: allow run_on_* functions to use standard input
Diffstat (limited to 'builtin/cat-file.c')
| -rw-r--r-- | builtin/cat-file.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/builtin/cat-file.c b/builtin/cat-file.c index 18fe58d6b8..1afdfb5cba 100644 --- a/builtin/cat-file.c +++ b/builtin/cat-file.c @@ -1047,6 +1047,9 @@ int cmd_cat_file(int argc, const char **argv, const char *prefix) if (batch.buffer_output < 0) batch.buffer_output = batch.all_objects; + prepare_repo_settings(the_repository); + the_repository->settings.command_requires_full_index = 0; + /* Return early if we're in batch mode? */ if (batch.enabled) { if (opt_cw) |
