We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7d92750 commit c60e9fcCopy full SHA for c60e9fc
please.sh
@@ -2050,7 +2050,10 @@ tag_git () { #
2050
"$(sed -n '1s/.*\(Git for Windows v[^ ]*\).*/\1/p' \
2051
<"$build_extra_dir/ReleaseNotes.md")" "$notes")" &&
2052
(cd "$git_src_dir" &&
2053
- git tag -m "$tag_message" -a "$nextver" git-for-windows/master) ||
+ signopt= &&
2054
+ if git config user.signingkey >/dev/null; then signopt=-s; fi &&
2055
+ git tag -m "$tag_message" -a $signopt \
2056
+ "$nextver" git-for-windows/master) ||
2057
die "Could not tag %s in %s\n" "$nextver" "$git_src_dir"
2058
2059
echo "Created tag $nextver" >&2
0 commit comments