Skip to content
Snippets Groups Projects
Commit ec1c8256 authored by Matthias Schiffer's avatar Matthias Schiffer
Browse files

scripts/patch.sh: add --committer-date-is-author-date to `git am`

This option will make the generated commit IDs deterministic, greatly
reducing the number of repository objects created when calling `make
update` repeatedly.
parent 00b620ae
No related branches found
No related tags found
No related merge requests found
......@@ -10,7 +10,7 @@ for module in $GLUON_MODULES; do
git checkout -B patching base
for patch in "$GLUONDIR"/patches/$module/*.patch; do
if ! git -c user.name='Gluon Patch Manager' -c user.email='gluon@void.example.com' am --whitespace=nowarn "$patch"; then
if ! git -c user.name='Gluon Patch Manager' -c user.email='gluon@void.example.com' am --whitespace=nowarn --committer-date-is-author-date "$patch"; then
git am --abort
git checkout patched
git branch -D patching
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment