summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--HACKING.rst4
-rwxr-xr-xtools/hacking.py4
2 files changed, 5 insertions, 3 deletions
diff --git a/HACKING.rst b/HACKING.rst
index 223f3ed7b..307d7477c 100644
--- a/HACKING.rst
+++ b/HACKING.rst
@@ -271,8 +271,8 @@ Commit Messages
Using a common format for commit messages will help keep our git history
readable. Follow these guidelines:
- First, provide a brief summary (it is recommended to keep the commit title
- under 50 chars).
+ First, provide a brief summary of 50 characters or less. Summaries
+ of greater then 72 characters will be rejected by the gate.
The first line of the commit message should provide an accurate
description of the change, not just a reference to a bug or
diff --git a/tools/hacking.py b/tools/hacking.py
index e339966ee..4e2331054 100755
--- a/tools/hacking.py
+++ b/tools/hacking.py
@@ -596,7 +596,7 @@ def once_git_check_commit_title():
nova HACKING recommends not referencing a bug or blueprint in first line,
it should provide an accurate description of the change
N801
- N802 Title limited to 50 chars
+ N802 Title limited to 72 chars
"""
#Get title of most recent commit
@@ -621,6 +621,8 @@ def once_git_check_commit_title():
"description of the change, not just a reference to a bug "
"or blueprint" % title.strip())
error = True
+ # HACKING.rst recommends commit titles 50 chars or less, but enforces
+ # a 72 character limit
if len(title.decode('utf-8')) > 72:
print ("N802: git commit title ('%s') should be under 50 chars"
% title.strip())