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

Unified Diff: git_cl.py

Issue 2087393004: git cl upload: add --message-file to provide arbitrary messages. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/depot_tools.git@master
Patch Set: Created 4 years, 6 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: git_cl.py
diff --git a/git_cl.py b/git_cl.py
index 415e36259b0a41aa04d0cc9d34ad1d402c257c23..7913e989d0345483b70b65e303a711adcf5365fd 100755
--- a/git_cl.py
+++ b/git_cl.py
@@ -3725,6 +3725,8 @@ def CMDupload(parser, args):
parser.add_option('-f', action='store_true', dest='force',
help="force yes to questions (don't prompt)")
parser.add_option('-m', dest='message', help='message for patchset')
+ parser.add_option('--message-file', dest='message_file',
+ help='file which contains message for patchset')
parser.add_option('-t', dest='title',
help='title for patchset (Rietveld only)')
parser.add_option('-r', '--reviewers',
@@ -3780,6 +3782,12 @@ def CMDupload(parser, args):
options.reviewers = cleanup_list(options.reviewers)
options.cc = cleanup_list(options.cc)
+ if options.message_file:
+ if options.message:
+ parser.error('only one of --message and --message-file allowed.')
+ options.message = gclient_utils.FileRead(options.message_file)
+ options.message_file = None
+
# For sanity of test expectations, do this otherwise lazy-loading *now*.
settings.GetIsGerrit()
« 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