-
-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Don't include PGP signatures of commits in messages
When creating a pull request or using a commit message in any way, if the commit was PGP-signed and the user had git configured to always show signatures (`git config log.showsignature=true`), then the message would include the signature verification text, which is not really something you usually want to include. Now `--no-show-signature` is always used when retrieving commit messages.
- Loading branch information
Showing
2 changed files
with
13 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
### PGP signatures of commits are not included in messages anymore | ||
|
||
When creating a pull request or using a commit message in any way, if the | ||
commit was PGP-signed and the user had git configured to always show signatures | ||
(`git config log.showsignature=true`), then the message would include the | ||
signature verification text, which is not really something you usually want to | ||
include. | ||
|
||
Now `--no-show-signature` is always used when retrieving commit messages. |