Skip to content

Commit ad7fd3c

Browse files
committed
Merge branch 'gm/request-pull-with-non-pgp-signed-tags'
Adjust "git request-pull" to strip embedded signature from signed tags to notice non-PGP signatures. * gm/request-pull-with-non-pgp-signed-tags: request-pull: filter out SSH/X.509 tag signatures
2 parents a6a323b + a9cad02 commit ad7fd3c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

git-request-pull.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ for you to fetch changes up to %H:
153153
if test $(git cat-file -t "$head") = tag
154154
then
155155
git cat-file tag "$head" |
156-
sed -n -e '1,/^$/d' -e '/^-----BEGIN PGP /q' -e p
156+
sed -n -e '1,/^$/d' -e '/^-----BEGIN \(PGP\|SSH\|SIGNED\) /q' -e p
157157
echo
158158
echo "----------------------------------------------------------------"
159159
fi &&

0 commit comments

Comments
 (0)