pu 17d05ac612cfc7d76fd240b62dd67418207c1142
jch a8a7972b910f0654ffe620b86f7f8330f52eaaaf
next e46b2d99d2742df792ec4089722921bf939458c2
master 076cbdcd739aeb33c1be87b73aebae5e43d7bcc5
master@{1} 2d2118b814c11f509e1aa76cb07110f7231668dc

Uncovered code in 'pu' not in 'jch'

pu 17d05ac612cfc7d76fd240b62dd67418207c1142
jch a8a7972b910f0654ffe620b86f7f8330f52eaaaf

advice.c

b3b18d16 178 return advice_setting[ADVICE_PUSH_UPDATE_REJECTED].enabled &&
b3b18d16 179 advice_setting[ADVICE_PUSH_UPDATE_REJECTED_ALIAS].enabled;

bloom.c

b6d925e7 247 for (i = 0; i < diff_queued_diff.nr; i++)
b6d925e7 248 diff_free_filepair(diff_queued_diff.queue[i]);
b6d925e7 249 filter->data = NULL;
b6d925e7 250 filter->len = 0;
b6d925e7 267 return -1;

bugreport.c

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

builtin/commit-graph.c

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

builtin/commit.c

builtin/help.c

dd763e68 123 puts(var);
dd763e68 124 continue;

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)

builtin/rebase.c

186dbeed 618 } else if (!read_oneliner(&buf, state_dir_path("head", opts), 0, 1))
06ebea5c 868 reset_head(the_repository, &opts->orig_head, "checkout",
06ebea5c 869 opts->head_name, 0,
e71223c6 1028 apply_autostash(state_dir_path("autostash", opts));

commit-graph.c

dc9f0216 62 return; /* should never happen, but be lenient */
dc9f0216 67 static int commit_pos_cmp(const void *va, const void *vb)
dc9f0216 69 const struct commit *a = *(const struct commit **)va;
dc9f0216 70 const struct commit *b = *(const struct commit **)vb;
dc9f0216 71 return commit_pos_at(&commit_pos, a) -
dc9f0216 72 commit_pos_at(&commit_pos, b);
92667ee9 89 else if (a->date > b->date)
92667ee9 90 return 1;
92667ee9 91 return 0;
282c08a9 328 chunk_repeated = 1;
282c08a9 335 chunk_repeated = 1;
282c08a9 342 break;
282c08a9 371 graph->chunk_bloom_indexes = NULL;
282c08a9 372 graph->chunk_bloom_data = NULL;
282c08a9 373 graph->bloom_filter_settings = NULL;
282c08a9 1087 progress = start_delayed_progress(
282c08a9 1089 ctx->commits.nr);
282c08a9 1112 progress = start_delayed_progress(
282c08a9 1114 ctx->commits.nr);
282c08a9 1288 progress = start_delayed_progress(
6bdbf235 1290 ctx->commits.nr);
92667ee9 1296 QSORT(sorted_by_pos, ctx->commits.nr, commit_pos_cmp);
5d5916fd 1751 break;

dir.c

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);

help.c

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

http.c

88238e02 376 return git_config_string(&http_proxy_ssl_cert, var, value);
88238e02 379 return git_config_string(&http_proxy_ssl_key, var, value);
88238e02 382 return git_config_string(&http_proxy_ssl_ca_info, var, value);
88238e02 385 proxy_ssl_cert_password_required = git_config_bool(var, value);
88238e02 386 return 0;
88238e02 964 if (ssl_cainfo != NULL)
88238e02 965 curl_easy_setopt(result, CURLOPT_CAINFO, ssl_cainfo);
af026519 1219 proxy_ssl_cert_password_required = 1;
88238e02 1292 memset(proxy_cert_auth.password, 0, strlen(proxy_cert_auth.password));
88238e02 1293 FREE_AND_NULL(proxy_cert_auth.password);

repository.c

reset.c

b3137f2e 37 ret = -1;
b3137f2e 38 goto leave_reset_head;
b3137f2e 43 goto leave_reset_head;
b3137f2e 65 goto leave_reset_head;
b3137f2e 71 goto leave_reset_head;
b3137f2e 76 goto leave_reset_head;
b3137f2e 80 ret = -1;
b3137f2e 81 goto leave_reset_head;
b3137f2e 89 goto leave_reset_head;
b3137f2e 108 } else if (old_orig)
b3137f2e 109 delete_ref(NULL, "ORIG_HEAD", old_orig, 0);

sequencer.c

fa717471 438 goto done;
fa717471 444 goto done;
448bea61 5143 apply_autostash(rebase_path_autostash());

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)

t/helper/test-advise.c

t/helper/test-bloom.c

b6d925e7 20 printf("No filter.\n");
b6d925e7 21 return;

tree-diff.c

3d2f906e 438 break;

worktree.c

e02a7141 470 strbuf_release(&err);

Commits introducing uncovered code:

brian m. carlson 94127599 repository: require a build flag to use SHA-256
brian m. carlson e02a7141 worktree: allow repository version 1
brian m. carlson 1bdca816 fast-import: add options for rewriting submodules
brian m. carlson ddddf8d7 fast-import: permit reading multiple marks files
brian m. carlson 768e30ea hash: implement and use a context cloning function
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
Denton Liu b3137f2e reset: extract reset_head() from rebase
Denton Liu fa717471 sequencer: use file strbuf for read_oneliner()
Denton Liu 448bea61 sequencer: make apply_rebase() accept a path
Denton Liu e71223c6 rebase: use apply_autostash() from sequencer.c
Denton Liu 186dbeed rebase: use read_oneliner()
Denton Liu 06ebea5c rebase: generify reset_head()
Denton Liu 1e1ef305 sequencer: extract perform_autostash() from rebase
Derrick Stolee 92667ee9 commit-graph: examine commits by generation number
Derrick Stolee 3d2f906e diff: halt tree-diff early after max_changes
Derrick Stolee 8dda180e dir: refactor treat_directory to clarify control flow
Emily Shaffer 57166073 bugreport: gather git version and build info
Emily Shaffer dd763e68 help: move list_config_help to builtin/help
Emily Shaffer 2aa60a17 bugreport: add tool to generate debugging info
Emily Shaffer d902ea4d bugreport: add uname info
Garima Singh 282c08a9 commit-graph: write Bloom filters to commit graph file
Garima Singh 6bdbf235 commit-graph: compute Bloom filters for changed paths
Garima Singh b6d925e7 bloom: core Bloom filter implementation for changed paths
Heba Waly b3b18d16 advice: revamp advise API
Jeff King dc9f0216 commit-graph: examine changed-path objects in pack order
Jorge Lopez Silva 88238e02 http: add client cert support for HTTPS proxies
Jorge Lopez Silva af026519 http: add environment variable support for HTTPS proxies
Phillip Wood 012ecfce rebase: fix advice when a fixup creates an empty commit
Taylor Blau 5d5916fd builtin/commit-graph.c: support '--split[=]'
Taylor Blau a599e2c9 builtin/commit-graph.c: introduce '--input='

Uncovered code in 'jch' not in 'next'

jch a8a7972b910f0654ffe620b86f7f8330f52eaaaf
next e46b2d99d2742df792ec4089722921bf939458c2

pathspec.c

e6c57b49 444 hint_path = get_git_dir();

sequencer.c

430b75f7 1476 return -1;

setup.c

e6c57b49 126 hint_path = get_git_dir();

Commits introducing uncovered code:

Emily Shaffer e6c57b49 prefix_path: show gitdir if worktree unavailable
Phillip Wood 430b75f7 commit: give correct advice for empty commit during a rebase

Uncovered code in 'next' not in 'master'

next e46b2d99d2742df792ec4089722921bf939458c2
master 076cbdcd739aeb33c1be87b73aebae5e43d7bcc5

builtin/am.c

e8ef1e8d 2345 resume.mode = RESUME_APPLY;

commit.c

merge-recursive.c

80205040 1739 return -1;
80205040 1746 return -1;
80205040 1750 return -1;
80205040 1761 return -1;
80205040 1768 return -1;
80205040 1772 return -1;

walker.c

7655b411 193 stop_progress(&progress);

Commits introducing uncovered code:

Elijah Newren 80205040 merge-recursive: apply collision handling unification to recursive case
Junio C Hamano f08132f8 rebase: --fork-point regression fix
Paolo Bonzini f3b48228 am: support --show-current-patch=raw as a synonym for--show-current-patch
Paolo Bonzini e8ef1e8d am: convert "resume" variable to a struct
René Scharfe 7655b411 remote-curl: show progress for fetches over dumb HTTP

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

master 076cbdcd739aeb33c1be87b73aebae5e43d7bcc5
master@{1} 2d2118b814c11f509e1aa76cb07110f7231668dc

bisect.c

45b63708 920 warning_errno(_("could not create file '%s'"),
6c69f222 1024 return BISECT_FAILED;

builtin/bisect--helper.c

292731c4 227 res = -1;
292731c4 233 res = error_errno(_("couldn't open the file '%s'"), git_path_bisect_log());
bfacfce7 320 return -1;
bfacfce7 321 return 0;
292731c4 410 res = -1;
292731c4 416 res = -1;
292731c4 582 res = -1;
292731c4 594 res = -1;
292731c4 606 res = -1;

builtin/describe.c

30b1c7ad 394 fprintf(stderr, _("finished search at %s\n"),
30b1c7ad 395 oid_to_hex(&c->object.oid));

builtin/fmt-merge-msg.c

0106b1d4 506 if (!sig.len)
0106b1d4 507 strbuf_addstr(&sig, "gpg verification failed.\n");

builtin/pack-objects.c

3f83fd5e 1647 if (!in_same_island(&delta->idx.oid, base_oid))

builtin/rebase.c

8a997ed1 695 write_file(state_dir_path("quiet", opts), "%s", "");
10cdb9f3 1664 if (is_merge(&options))

builtin/receive-pack.c

4ef34648 998 else if (git_work_tree_cfg)
4ef34648 999 work_tree = git_work_tree_cfg;
4ef34648 1001 work_tree = "..";
4ef34648 1008 git_dir = get_git_dir();

builtin/rev-list.c

792f8119 401 return -1;
608d9c93 410 return -1;
792f8119 444 return -1;

builtin/show-branch.c

2ce6d075 539 if (strpbrk(av, "*?[")) {

builtin/sparse-checkout.c

gpg-interface.c

0106b1d4 434 return error_errno(_("could not create temporary file"));
0106b1d4 437 error_errno(_("failed writing detached signature to '%s'"),
0106b1d4 439 delete_tempfile(&temp);
0106b1d4 440 return -1;

log-tree.c

0106b1d4 462 strbuf_addstr(&gpg_output, "No signature\n");
0106b1d4 534 else if (verify_message.len <= gpg_message_offset)

pack-bitmap.c

4eb707eb 626 (obj->type == OBJ_TAG && !revs->tag_objects))
4eb707eb 627 continue;
4f3bd560 732 continue;
e8e71848 799 nth_packed_object_id(&oid, pack, entry->nr);

pack-check.c

packfile.c

6ac9760a 1245 return -1;
6ac9760a 1249 return -1;
6ac9760a 1253 return -1;
2fecc48c 1878 return -1;

sequencer.c

d48e5e21 1529 return originally_empty;
e98c4269 2523 opts->keep_redundant_commits = 1;

sha1-file.c

b99b6bcc 1478 oidclr(oi->delta_base_oid);

Commits introducing uncovered code:

Benno Evers 30b1c7ad describe: don't abort too early when searching tags
Derrick Stolee ef076599 sparse-checkout: work with Windows paths
Derrick Stolee 2631dc87 sparse-checkout: create 'add' subcommand
Elijah Newren 8295ed69 rebase: make the backend configurable via config setting
Elijah Newren 10cdb9f3 rebase: rename the two primary rebase backends
Elijah Newren 8a997ed1 rebase, sequencer: remove the broken GIT_QUIET handling
Elijah Newren e98c4269 rebase (interactive-backend): fix handling of commits that become empty
Elijah Newren d48e5e21 rebase (interactive-backend): make --keep-empty the default
Hariom Verma 4ef34648 receive.denyCurrentBranch: respect all worktrees
Jeff King 2fecc48c packfile: drop nth_packed_object_sha1()
Jeff King b99b6bcc packed_object_info(): use object_id for returning delta base
Jeff King 500e4f23 pack-bitmap: use object_id when loading on-disk bitmaps
Jeff King 63f4a7fc pack-check: push oid lookup into loop
Jeff King 4f3bd560 pack-bitmap: implement BLOB_NONE filtering
Jeff King 4eb707eb rev-list: allow commit-only bitmap traversals
Jeff King 6ac9760a packed_object_info(): use object_id internally for delta base
Jeff King 55cb10f9 rev-list: make --count work with --objects
Jeff King 84243da1 pack-bitmap: implement BLOB_LIMIT filtering
Jeff King 551cf8b6 pack-bitmap: factor out type iterator initialization
Jeff King 608d9c93 rev-list: allow bitmaps when counting objects
Jeff King 792f8119 rev-list: factor out bitmap-optimized routines
Jeff King 3f83fd5e pack-objects: read delta base oid into object_id struct
Junio C Hamano e8e71848 Merge branch 'jk/nth-packed-object-id'
Junio C Hamano 0106b1d4 Revert "gpg-interface: prefer check_signature() for GPG verification"
Pranit Bauva 6c69f222 bisect: libify `bisect_next_all`
Pranit Bauva 45b63708 bisect: libify `check_good_are_ancestors_of_bad` and its dependents
René Scharfe 2ce6d075 use strpbrk(3) to search for characters from a given set
Tanushree Tumane bfacfce7 bisect--helper: introduce new `decide_next()` function
Tanushree Tumane 292731c4 bisect--helper: change `retval` to `res`