diff options
author | Jeff King <peff@peff.net> | 2018-11-06 02:51:15 -0500 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2018-11-07 10:11:09 +0900 |
commit | 7488ba3eeaaaeb8c0e06cca12384f9f7f76082b5 (patch) | |
tree | 3e97e080b8af2a996777a91d8ccce6c82636dc19 /builtin/merge.c | |
parent | merge: extract verify_merge_signature() helper (diff) | |
download | tgif-7488ba3eeaaaeb8c0e06cca12384f9f7f76082b5.tar.xz |
merge: handle --verify-signatures for unborn branch
When git-merge sees that we are on an unborn branch (i.e., there is no
HEAD), it follows a totally separate code path than the usual merge
logic. This code path does not know about verify_signatures, and so we
fail to notice bad or missing signatures.
This has been broken since --verify-signatures was added in efed002249
(merge/pull: verify GPG signatures of commits being merged, 2013-03-31).
In an ideal world, we'd unify the flow for this case with the regular
merge logic, which would fix this bug and avoid introducing similar
ones. But because the unborn case is so different, it would be a burden
on the rest of the function to continually handle the missing HEAD. So
let's just port the verification check to this special case.
Reported-by: Felix Eckhofer <felix@eckhofer.com>
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin/merge.c')
-rw-r--r-- | builtin/merge.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/builtin/merge.c b/builtin/merge.c index e1bc5a484b..05ea0bbe01 100644 --- a/builtin/merge.c +++ b/builtin/merge.c @@ -1334,6 +1334,10 @@ int cmd_merge(int argc, const char **argv, const char *prefix) die(_("%s - not something we can merge"), argv[0]); if (remoteheads->next) die(_("Can merge only exactly one commit into empty head")); + + if (verify_signatures) + verify_merge_signature(remoteheads->item, verbosity); + remote_head_oid = &remoteheads->item->object.oid; read_empty(remote_head_oid, 0); update_ref("initial pull", "HEAD", remote_head_oid, NULL, 0, |