Skip to content

Commit 555f47b

Browse files
LinjingZhangederjc
authored andcommitted
tools/: Remove sign-off check.
1 parent ec78895 commit 555f47b

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

tools/verifygitlog.py

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -87,10 +87,6 @@ def verify(sha, err):
8787
# Author and committer email.
8888
for line in git_log("%ae%n%ce", sha, "-n1"):
8989
very_verbose("email", line)
90-
# Disable because user have to change their github profile.
91-
# if "noreply" in line:
92-
# err.error("Unwanted email address: " + line)
93-
9490

9591
verify_message_body(raw_body, err)
9692

@@ -114,9 +110,6 @@ def verify_message_body(raw_body, err):
114110
if len(line) >= 76 and "://" not in line:
115111
err.error("Message lines should be 75 or less characters: " + line)
116112

117-
if not raw_body[-1].startswith("Signed-off-by: ") or "@" not in raw_body[-1]:
118-
err.error('Message must be signed-off. Use "git commit -s".')
119-
120113

121114
def run(args):
122115
verbose("run", *args)

0 commit comments

Comments
 (0)