-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Fix commit hook breakage #220
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
jserv
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Don't mention the number of pull request. Instead, refer to the short commit hash.
7aaeed1 to
82cc680
Compare
jserv
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Check the suspicious commit 4a8d8b5 : unknown revision or path not in the working tree.
The functionality introduced in commit d39d920 was broken due to changes introduced in commit 4a8b8d5, where some occurrences of 'COMMIT_MSG_LINES' were replaced with 'commit_msg_lines' without updating all relevant functions. This commit fixes the issue by replacing all instances of 'commit_msg_lines' with 'COMMIT_MSG_LINES', ensuring consistency and restoring the intended functionality. Change-Id: I0c93617be83c5f24b1e17678566883c0481ddc48
82cc680 to
ff5e2b7
Compare
The typo in the commit was fixed. |
|
Thank @Dennis40816 for contributing! |
The functionality introduced in d39d920 was broken due to changes introduced in commit 4a8b8d5, where some occurrences of
COMMIT_MSG_LINESwere replaced withcommit_msg_lineswithout updating all relevant functions.This PR fixes the issue by replacing all instances of
COMMIT_MSG_LINESwithcommit_msg_lines.