chore: avoid appending git version to the exported patches (#15389)

* chore: avoid appending git version to the exported patches

* fix no-eol at end of v8 patch
This commit is contained in:
Milan Burda 2018-10-26 09:22:59 +02:00 committed by Robo
parent ec4a0e096f
commit d56617e5d0
109 changed files with 14 additions and 329 deletions

View file

@ -29,6 +29,11 @@ def format_patch(repo, since):
'--no-stat',
'--stdout',
# Per RFC 3676 the signature is separated from the body by a line with
# '-- ' on it. If the signature option is omitted the signature defaults
# to the Git version number.
'--no-signature',
# The name of the parent commit object isn't useful information in this
# context, so zero it out to avoid needless patch-file churn.
'--zero-commit',