Skip to content

Commit c64b234

Browse files
committed
Merge branch 'pw/replay-exclude-gpgsig-fix'
"git replay" forgot to omit the "gpgsig-sha256" extended header from the resulting commit the same way it omits "gpgsig", which has been corrected. * pw/replay-exclude-gpgsig-fix: replay: do not copy "gpgsign-sha256" header
2 parents bdc5341 + 9f3a115 commit c64b234

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

builtin/replay.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ static struct commit *create_commit(struct repository *repo,
7373
const char *message = repo_logmsg_reencode(repo, based_on,
7474
NULL, out_enc);
7575
const char *orig_message = NULL;
76-
const char *exclude_gpgsig[] = { "gpgsig", NULL };
76+
const char *exclude_gpgsig[] = { "gpgsig", "gpgsig-sha256", NULL };
7777

7878
commit_list_insert(parent, &parents);
7979
extra = read_commit_extra_headers(based_on, exclude_gpgsig);

0 commit comments

Comments
 (0)