diff options
| author | Junio C Hamano <gitster@pobox.com> | 2026-01-13 06:13:12 -0800 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2026-01-13 06:13:12 -0800 |
| commit | 9e4a786c3db10205fbc8c6a0aa1f14c4ca325760 (patch) | |
| tree | 8977722181bf9b8eb485d94ff7257a8e03f866fa /refs | |
| parent | f0ef5b6d9bcc258e4cbef93839d1b7465d5212b9 (diff) | |
| parent | d205234cb05a5e330c0f7f5b3ea764533a74d69e (diff) | |
| download | git-9e4a786c3db10205fbc8c6a0aa1f14c4ca325760.tar.xz | |
Merge branch 'ps/history' into pw/replay-drop-empty
* ps/history: (186 commits)
builtin/history: implement "reword" subcommand
builtin: add new "history" command
wt-status: provide function to expose status for trees
replay: support updating detached HEAD
replay: support empty commit ranges
replay: small set of cleanups
builtin/replay: move core logic into "libgit.a"
builtin/replay: extract core logic to replay revisions
The 15th batch
t3650: add more regression tests for failure conditions
replay: die if we cannot parse object
replay: improve code comment and die message
replay: die descriptively when invalid commit-ish is given
replay: find *onto only after testing for ref name
replay: remove dead code and rearrange
The 14th batch
The 13th batch
config: use git_parse_int() in git_config_get_expiry_in_days()
receive-pack: convert receive hooks to hook API
receive-pack: convert update hooks to new API
...
Diffstat (limited to 'refs')
| -rw-r--r-- | refs/debug.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/refs/debug.c b/refs/debug.c index 3e31228c9a..639db0f26e 100644 --- a/refs/debug.c +++ b/refs/debug.c @@ -139,7 +139,7 @@ static int debug_optimize_required(struct ref_store *ref_store, struct debug_ref_store *drefs = (struct debug_ref_store *)ref_store; int res = drefs->refs->be->optimize_required(drefs->refs, opts, required); trace_printf_key(&trace_refs, "optimize_required: %s, res: %d\n", - required ? "yes" : "no", res); + *required ? "yes" : "no", res); return res; } |
