pu ad1641bbcd3c56bafe85ff7e56606b8aa0169211
jch a85ddbbb106edaaaeca34295a86aebd422479ed2
next 2183baf09cb5d1e1dd473e6d197893cd5e1c99ca
master 9fadedd637b312089337d73c3ed8447e9f0aa775
master@{1} a7d14a44285d3ec4b25bf9e3b7df701221350661

Uncovered code in 'pu' not in 'jch'

pu ad1641bbcd3c56bafe85ff7e56606b8aa0169211
jch a85ddbbb106edaaaeca34295a86aebd422479ed2

bloom.c

ed591feb 172 return NULL;
ed591feb 246 for (i = 0; i < diff_queued_diff.nr; i++)
ed591feb 247 diff_free_filepair(diff_queued_diff.queue[i]);
ed591feb 248 filter->data = NULL;
ed591feb 249 filter->len = 0;
fa63c5b3 266 return -1;

bugreport.c

f0b79bb2 20 strbuf_addf(sys_info, _("uname() failed with error '%s' (%d)\n"),
f0b79bb2 22 errno);

builtin/help.c

dd763e68 123 puts(var);
dd763e68 124 continue;

builtin/rebase.c

92470920 623 } else if (!read_oneliner(&buf, state_dir_path("head", opts),
796ff68d 878 reset_head(the_repository, &opts->orig_head, "checkout",
796ff68d 879 opts->head_name, 0,
dcf14833 1038 apply_autostash(state_dir_path("autostash", opts));

builtin/receive-pack.c

9f699cce 237 return config_error_nonbool(var);
c7ea37de 960 return code;
c7ea37de 963 proc.err = 0;
c7ea37de 968 if (use_sideband)
c7ea37de 969 finish_async(&muxer);
c7ea37de 970 return code;
9f699cce 1743 continue;

builtin/update-ref.c

1f2a79ad 438 continue;

commit-graph.c

d21ee7d1 62 return; /* should never happen, but be lenient */
d21ee7d1 67 static int commit_pos_cmp(const void *va, const void *vb)
d21ee7d1 69 const struct commit *a = *(const struct commit **)va;
d21ee7d1 70 const struct commit *b = *(const struct commit **)vb;
d21ee7d1 71 return commit_pos_at(&commit_pos, a) -
d21ee7d1 72 commit_pos_at(&commit_pos, b);
3d112755 88 return -1;
3d112755 91 return 0;
52480757 328 chunk_repeated = 1;
52480757 335 chunk_repeated = 1;
52480757 342 break;
52480757 1085 progress = start_delayed_progress(
52480757 1087 ctx->commits.nr);
52480757 1110 progress = start_delayed_progress(
52480757 1112 ctx->commits.nr);
f97b9325 1286 progress = start_delayed_progress(
f97b9325 1288 ctx->commits.nr);
3d112755 1294 QSORT(sorted_commits, ctx->commits.nr, commit_pos_cmp);

dir.c

bb8f652e 1863 state = excluded ? path_excluded : path_untracked;

fmt-merge-msg.c

ce6521e4 24 use_branch_desc = git_config_bool(key, value);
ce6521e4 75 continue;
ce6521e4 107 return 1;
ce6521e4 113 return 2;
ce6521e4 117 return 3;
ce6521e4 126 line[len - 1] = 0;
ce6521e4 167 origin = src;
ce6521e4 168 string_list_append(&src_data->generic, line);
ce6521e4 169 src_data->head_status |= 2;
ce6521e4 188 return;
ce6521e4 201 static void add_branch_desc(struct strbuf *out, const char *name)
ce6521e4 203 struct strbuf desc = STRBUF_INIT;
ce6521e4 205 if (!read_branch_desc(&desc, name)) {
ce6521e4 206 const char *bp = desc.buf;
ce6521e4 207 while (*bp) {
ce6521e4 208 const char *ep = strchrnul(bp, '\n');
ce6521e4 209 if (*ep)
ce6521e4 210 ep++;
ce6521e4 211 strbuf_addf(out, " : %.*s", (int)(ep - bp), bp);
ce6521e4 212 bp = ep;
ce6521e4 214 strbuf_complete_line(out);
ce6521e4 216 strbuf_release(&desc);
ce6521e4 217 }
ce6521e4 231 return;
ce6521e4 239 return;
ce6521e4 276 else if (people->nr)
ce6521e4 277 strbuf_addf(out, "%s (%d) and others",
ce6521e4 278 people->items[0].string,
ce6521e4 279 (int)util_as_integral(&people->items[0]));
ce6521e4 342 return;
ce6521e4 355 if (opts->credit_people)
ce6521e4 356 record_person('c', &committers, commit);
ce6521e4 372 string_list_append(&subjects,
ce6521e4 373 oid_to_hex(&commit->object.oid));
ce6521e4 387 add_branch_desc(out, name);
ce6521e4 425 subsep = ", ";
ce6521e4 426 strbuf_addstr(out, "HEAD");
ce6521e4 446 strbuf_addstr(out, subsep);
ce6521e4 447 print_joined("commit ", "commits ", &src_data->generic,
e261ddc5 498 strbuf_addstr(&sig, "gpg verification failed.\n");
ce6521e4 507 if (tag_number == 2) {
ce6521e4 508 struct strbuf tagline = STRBUF_INIT;
ce6521e4 509 strbuf_addch(&tagline, '\n');
ce6521e4 510 strbuf_add_commented_lines(&tagline,
ce6521e4 511 origins.items[first_tag].string,
ce6521e4 512 strlen(origins.items[first_tag].string));
ce6521e4 513 strbuf_insert(&tagbuf, 0, tagline.buf,
ce6521e4 515 strbuf_release(&tagline);
ce6521e4 517 strbuf_addch(&tagbuf, '\n');
ce6521e4 518 strbuf_add_commented_lines(&tagbuf,
ce6521e4 519 origins.items[i].string,
ce6521e4 520 strlen(origins.items[i].string));
ce6521e4 521 fmt_tag_signature(&tagbuf, &sig, buf, len);
ce6521e4 566 continue;

help.c

765e8219 641 strbuf_addstr(buf, "no commit associated with this build\n");

prune-packed.c

9460fd48 26 printf("rm -f %s\n", path);
9460fd48 35 progress = start_delayed_progress(_("Removing duplicate objects"), 256);

refs/files-backend.c

edc30691 2572 strbuf_release(&err);

reset.c

7cd76158 37 ret = -1;
7cd76158 38 goto leave_reset_head;
7cd76158 43 goto leave_reset_head;
7cd76158 66 goto leave_reset_head;
7cd76158 72 goto leave_reset_head;
7cd76158 77 goto leave_reset_head;
7cd76158 81 ret = -1;
7cd76158 82 goto leave_reset_head;
7cd76158 90 goto leave_reset_head;
7cd76158 109 } else if (old_orig)
7cd76158 110 delete_ref(NULL, "ORIG_HEAD", old_orig, 0);

revision.c

fa63c5b3 704 return -1;
fa63c5b3 707 return -1;
749d958c 717 count_bloom_filter_length_zero++;
fa63c5b3 718 return -1;

sequencer.c

e743716a 434 goto done;
e743716a 440 goto done;
54ab5233 5168 apply_autostash(rebase_path_autostash());

t/helper/test-bloom.c

f1294eaf 25 printf("No filter.\n");
f1294eaf 26 return;

t/helper/test-proc-receive.c

c7ea37de 127 usage_msg_opt("Too many arguments.", proc_receive_usage, options);

transport-helper.c

43feef4a 756 status = REF_STATUS_UPTODATE;
43feef4a 757 FREE_AND_NULL(msg);
43feef4a 764 status = REF_STATUS_REJECT_ALREADY_EXISTS;
43feef4a 765 FREE_AND_NULL(msg);
43feef4a 768 status = REF_STATUS_REJECT_FETCH_FIRST;
43feef4a 769 FREE_AND_NULL(msg);
43feef4a 772 status = REF_STATUS_REJECT_NEEDS_FORCE;
43feef4a 773 FREE_AND_NULL(msg);
43feef4a 776 status = REF_STATUS_REJECT_STALE;
43feef4a 777 FREE_AND_NULL(msg);
43feef4a 780 forced = 1;

transport.c

43feef4a 473 fprintf(stdout, "%c\t:%s\t", flag, target_refname);
43feef4a 556 print_ref_status('X', "[no match]", NULL, ref, NULL, NULL,
43feef4a 560 print_ref_status('!', "[rejected]", NULL, ref, NULL,
43feef4a 565 print_ref_status('=', "[up to date]", NULL, ref,
43feef4a 581 print_ref_status('!', "[rejected]", NULL, ref, ref->peer_ref,
43feef4a 589 print_ref_status('!', "[rejected]", NULL, ref, ref->peer_ref,
43feef4a 599 print_ref_status('!', "[remote failure]", NULL, ref,

tree-diff.c

e3696980 438 break;

Commits introducing uncovered code:

Denton Liu 2ad2d055 sequencer: extract perform_autostash() from rebase
Denton Liu ce6521e4 Lib-ify fmt-merge-msg
Denton Liu 9460fd48 Lib-ify prune-packed
Denton Liu 7cd76158 reset: extract reset_head() from rebase
Denton Liu e743716a sequencer: use file strbuf for read_oneliner()
Denton Liu dcf14833 rebase: use apply_autostash() from sequencer.c
Denton Liu 54ab5233 sequencer: make apply_rebase() accept a path
Denton Liu 92470920 rebase: use read_oneliner()
Denton Liu 796ff68d rebase: generify reset_head()
Derrick Stolee e3696980 diff: halt tree-diff early after max_changes
Derrick Stolee 8fd5ec4f dir: refactor treat_directory to clarify control flow
Elijah Newren bb8f652e dir: replace exponential algorithm with a linear one
Emily Shaffer dd763e68 help: move list_config_help to builtin/help
Emily Shaffer ec8a5ea9 bugreport: add tool to generate debugging info
Emily Shaffer f0b79bb2 bugreport: add uname info
Emily Shaffer 765e8219 bugreport: gather git version and build info
Garima Singh 749d958c revision.c: add trace2 stats around Bloom filter usage
Garima Singh f1294eaf bloom.c: introduce core Bloom filter constructs
Garima Singh 52480757 commit-graph: write Bloom filters to commit graph file
Garima Singh 3d112755 commit-graph: examine commits by generation number
Garima Singh fa63c5b3 revision.c: use Bloom filters to speed up path based revision walks
Garima Singh f97b9325 commit-graph: compute Bloom filters for changed paths
Garima Singh ed591feb bloom.c: core Bloom filter implementation for changed paths.
Jeff King d21ee7d1 commit-graph: examine changed-path objects in pack order
Jiang Xin c7ea37de receive-pack: add new proc-receive hook
Jiang Xin 9f699cce receive-pack: new config receive.procReceiveRefs
Jiang Xin 43feef4a receive-pack: refactor report for proc-receive
Junio C Hamano e261ddc5 Merge branch 'dl/libify-a-few' into pu
Patrick Steinhardt d90788d2 update-ref: move transaction handling into `update_refs_stdin()`
Patrick Steinhardt edc30691 refs: fix segfault when aborting empty transaction
Patrick Steinhardt fb9e95b4 update-ref: implement interactive transaction handling
Patrick Steinhardt 1f2a79ad update-ref: organize commands in an array

Uncovered code in 'jch' not in 'next'

jch a85ddbbb106edaaaeca34295a86aebd422479ed2
next 2183baf09cb5d1e1dd473e6d197893cd5e1c99ca

builtin/rebase.c

oid-array.c

5cc044e0 56 return ret;
16ddcd40 76 return ret;

remote.c

a761fb70 1649 return NULL;
a761fb70 1656 return branch->refname;
a761fb70 1671 return NULL;
a761fb70 1785 return NULL;

t/helper/test-oid-array.c

910650d2 29 oid_array_clear(&array);

trace2/tr2_cfg.c

3d3adaad 63 return tr2_cfg_env_vars_count;

unpack-trees.c

7af7a258 1847 ret = UPDATE_SPARSITY_WORKTREE_UPDATE_FAILURES;

wrapper.c

7cd54d37 221 len = MAX_IO_SIZE;
7cd54d37 243 len = MAX_IO_SIZE;

Commits introducing uncovered code:

Ævar Arnfjörð Bjarmason 5cc044e0 get_short_oid: sort ambiguous objects by type, then SHA-1
brian m. carlson 910650d2 Rename sha1_array to oid_array
Damien Robert a761fb70 remote.c: fix handling of %(push:remoteref)
Denton Liu 7cd54d37 wrapper: indent with tabs
Elijah Newren 7af7a258 unpack-trees: add a new update_sparsity() function
Jeff King 16ddcd40 sha1_array: let callbacks interrupt iteration
Jeff King ed4b804e test-tool: rename sha1-array to oid-array
Jonathan Tan 52e8d194 rebase --merge: optionally skip upstreamed commits
Josh Steadmon 3d3adaad trace2: teach Git to log environment variables

Uncovered code in 'next' not in 'master'

next 2183baf09cb5d1e1dd473e6d197893cd5e1c99ca
master 9fadedd637b312089337d73c3ed8447e9f0aa775

builtin/commit-graph.c

a599e2c9 75 *to = 0;
a599e2c9 76 return 0;
a599e2c9 86 *to |= COMMIT_GRAPH_INPUT_APPEND;

commit-graph.c

5d5916fd 1557 break;

Commits introducing uncovered code:

Taylor Blau a599e2c9 builtin/commit-graph.c: introduce '--input='
Taylor Blau 5d5916fd builtin/commit-graph.c: support '--split[=]'

Uncovered code in 'master' not in 'master@{1}'

master 9fadedd637b312089337d73c3ed8447e9f0aa775
master@{1} a7d14a44285d3ec4b25bf9e3b7df701221350661

builtin/checkout.c

13e7ed6a 625 is_null_oid(&info->oid) ? &tree->object.oid :

builtin/fmt-merge-msg.c

67948981 508 strbuf_addstr(&sig, "gpg verification failed.\n");

builtin/init-db.c

efa7ae36 192 repo_version = GIT_REPO_VERSION_READ;
efa7ae36 200 git_config_set("extensions.objectformat",
8b8f7189 376 repo_fmt->hash_algo = hash;
3c9331a1 378 int env_algo = hash_algo_by_name(env);
3c9331a1 379 if (env_algo == GIT_HASH_UNKNOWN)
3c9331a1 381 repo_fmt->hash_algo = env_algo;
8b8f7189 599 hash_algo = hash_algo_by_name(object_format);
8b8f7189 600 if (hash_algo == GIT_HASH_UNKNOWN)

convert.c

ab90ecae 862 goto done;
ab90ecae 868 goto done;
ab90ecae 874 goto done;

fast-import.c

ddddf8d7 1149 insert_mark(marks, mark, e);
1bdca816 2183 return -1;
1bdca816 3058 return;
1bdca816 3316 die_errno("cannot read '%s'", f);

gpg-interface.c

67948981 275 error_errno(_("failed writing detached signature to '%s'"),
67948981 277 delete_tempfile(&temp);
67948981 278 return -1;
67948981 293 gpg_status = &buf;

log-tree.c

67948981 461 show_sig_lines(opt, status, "No signature\n");

repository.c

sha1-file.c

768e30ea 98 static void git_hash_sha256_clone(git_hash_ctx *dst, const git_hash_ctx *src)
768e30ea 100 git_SHA256_Clone(&dst->sha256, &src->sha256);
768e30ea 101 }
768e30ea 118 static void git_hash_unknown_clone(git_hash_ctx *dst, const git_hash_ctx *src)

worktree.c

e02a7141 476 strbuf_release(&err);

Commits introducing uncovered code:

brian m. carlson 13e7ed6a builtin/checkout: compute checkout metadata for checkouts
brian m. carlson efa7ae36 init-db: move writing repo version into a function
brian m. carlson 8b8f7189 builtin/init-db: allow specifying hash algorithm on command line
brian m. carlson 3c9331a1 builtin/init-db: add environment variable for new repo hash
brian m. carlson ab90ecae convert: permit passing additional metadata to filter processes
brian m. carlson ddddf8d7 fast-import: permit reading multiple marks files
brian m. carlson 1bdca816 fast-import: add options for rewriting submodules
brian m. carlson 94127599 repository: require a build flag to use SHA-256
brian m. carlson 768e30ea hash: implement and use a context cloning function
brian m. carlson e02a7141 worktree: allow repository version 1
Hans Jerry Illikainen 67948981 gpg-interface: prefer check_signature() for GPG verification