Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(354)

Unified Diff: gcl.py

Issue 155956: Provide direction when using gcl to not forget certain commit descriptions... (Closed) Base URL: http://src.chromium.org/svn/trunk/tools/depot_tools/
Patch Set: '' Created 11 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gcl.py
===================================================================
--- gcl.py (revision 21247)
+++ gcl.py (working copy)
@@ -980,7 +980,13 @@
affected_files = filter(lambda x: file_re.match(x[0]), other_files)
unaffected_files = filter(lambda x: not file_re.match(x[0]), other_files)
- separator1 = ("\n---All lines above this line become the description.\n"
+ separator1 = ("\n---All lines above this line become the description.\n\n"
+ "BUG= http://crbug.com/<bugid>\n"
+ "TEST= <Provide notes to help QA verify this change.>\n"
+ "RELEASE_NOTES\n"
+ " <Add this token to the end of your description to include\n"
+ " this change in the release notes. Please make the first\n"
+ " line of the description a brief, complete sentence.>\n\n"
"---Repository Root: " + change_info.GetLocalRoot() + "\n"
"---Paths in this changelist (" + change_info.name + "):\n")
separator2 = "\n\n---Paths modified but not in any changelist:\n\n"
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698