RESOLVED FIXED Bug 230195
Provide a way to update the commit message with an updated list of changed files/functions
https://bugs.webkit.org/show_bug.cgi?id=230195
Summary Provide a way to update the commit message with an updated list of changed fi...
Hoa Dinh
Reported 2021-09-11 15:17:39 PDT
When the author needs to make additional changes to the commit, we generally need to make changes to the commit message with the updated list with changes in files/functions. Currently, that process is very manual and may involve: - saving the current commit message un-committing then re-committing and merge the old commit message with the new generated commit message template. - or writing manually the list of new changes in files/functions. This process should be a little more automated. For that, we can make changes in commit-log-editor to allow updates of the commit message with a generated list of changed files/functions. Since there may already be comment of the author or this list of files/functions, this updated list needs to be appended at the bottom for the author to merge the content.
Attachments
Patch (14.16 KB, patch)
2021-09-11 15:59 PDT, Hoa Dinh
no flags
Patch (14.18 KB, patch)
2021-09-11 16:18 PDT, Hoa Dinh
no flags
Patch (5.66 KB, patch)
2021-09-13 15:49 PDT, Hoa Dinh
no flags
Patch (6.39 KB, patch)
2021-09-13 16:24 PDT, Hoa Dinh
no flags
Hoa Dinh
Comment 1 2021-09-11 15:59:14 PDT
Hoa Dinh
Comment 2 2021-09-11 16:18:06 PDT
Hoa Dinh
Comment 3 2021-09-13 15:49:29 PDT
Jonathan Bedard
Comment 4 2021-09-13 16:14:40 PDT
Comment on attachment 438083 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=438083&action=review > Tools/Scripts/prepare-ChangeLog:183 > + print STDERR " --only-files Generate only the files changes.\n"; I would change this to say "Exclude the standard changelog header and only include references to files", the existing message doesn't give much extra information.
Hoa Dinh
Comment 5 2021-09-13 16:24:53 PDT
Hoa Dinh
Comment 6 2021-09-13 16:26:47 PDT
I added that part: - my $date = changeLogDate(ChangeLogTimeZone); - print CHANGE_LOG normalizeLineEndings("$date $name <$emailAddress>\n\n", $endl); + if (!$onlyFiles) { + my $date = changeLogDate(ChangeLogTimeZone); + print CHANGE_LOG normalizeLineEndings("$date $name <$emailAddress>\n\n", $endl); + } And also applied the suggestion for the help message.
Hoa Dinh
Comment 7 2021-09-13 16:52:33 PDT
cq?
Fujii Hironori
Comment 8 2021-09-13 19:27:27 PDT
Do yuou know "Tools/Scripts/webkit-patch prepare --update-changelogs <BUG_ID>"?
EWS
Comment 9 2021-09-14 08:56:58 PDT
Committed r282391 (241652@main): <https://commits.webkit.org/241652@main> All reviewed patches have been landed. Closing bug and clearing flags on attachment 438088 [details].
Radar WebKit Bug Importer
Comment 10 2021-09-14 08:57:18 PDT
Note You need to log in before you can comment on or make changes to this bug.