diff options
| author | Junio C Hamano <gitster@pobox.com> | 2022-08-01 09:58:38 -0700 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2022-08-01 09:58:38 -0700 |
| commit | f0f9a033ed3c053b6cff33fd0aed59aed1e8dc00 (patch) | |
| tree | d92c57231a04720d171fa99d183eed623046662c | |
| parent | 3d8e3dc4fc22fe41f8ee1184f085c600f35ec76f (diff) | |
| parent | cc391fc886639fb589b4e8da6a4e1a98d3ee07ab (diff) | |
| download | git-f0f9a033ed3c053b6cff33fd0aed59aed1e8dc00.tar.xz | |
Merge branch 'cl/rerere-train-with-no-sign'
"rerere-train" script (in contrib/) used to honor commit.gpgSign
while recreating the throw-away merges.
source: <PH7PR14MB5594A27B9295E95ACA4D6A69CE8F9@PH7PR14MB5594.namprd14.prod.outlook.com>
* cl/rerere-train-with-no-sign:
contrib/rerere-train: avoid useless gpg sign in training
| -rwxr-xr-x | contrib/rerere-train.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/rerere-train.sh b/contrib/rerere-train.sh index 26b724c8c6..bd01e430ef 100755 --- a/contrib/rerere-train.sh +++ b/contrib/rerere-train.sh @@ -75,7 +75,7 @@ do continue fi git checkout -q "$parent1^0" - if git merge $other_parents >/dev/null 2>&1 + if git merge --no-gpg-sign $other_parents >/dev/null 2>&1 then # Cleanly merges continue |
