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

Side by Side 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 unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!/usr/bin/env python 1 #!/usr/bin/env python
2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 2 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 # Copyright (C) 2008 Evan Martin <martine@danga.com> 6 # Copyright (C) 2008 Evan Martin <martine@danga.com>
7 7
8 """A git-command for integrating reviews on Rietveld and Gerrit.""" 8 """A git-command for integrating reviews on Rietveld and Gerrit."""
9 9
10 from __future__ import print_function 10 from __future__ import print_function
(...skipping 3707 matching lines...) Expand 10 before | Expand all | Expand 10 after
3718 Can also set the above globally by using the --global flag. 3718 Can also set the above globally by using the --global flag.
3719 """ 3719 """
3720 parser.add_option('--bypass-hooks', action='store_true', dest='bypass_hooks', 3720 parser.add_option('--bypass-hooks', action='store_true', dest='bypass_hooks',
3721 help='bypass upload presubmit hook') 3721 help='bypass upload presubmit hook')
3722 parser.add_option('--bypass-watchlists', action='store_true', 3722 parser.add_option('--bypass-watchlists', action='store_true',
3723 dest='bypass_watchlists', 3723 dest='bypass_watchlists',
3724 help='bypass watchlists auto CC-ing reviewers') 3724 help='bypass watchlists auto CC-ing reviewers')
3725 parser.add_option('-f', action='store_true', dest='force', 3725 parser.add_option('-f', action='store_true', dest='force',
3726 help="force yes to questions (don't prompt)") 3726 help="force yes to questions (don't prompt)")
3727 parser.add_option('-m', dest='message', help='message for patchset') 3727 parser.add_option('-m', dest='message', help='message for patchset')
3728 parser.add_option('--message-file', dest='message_file',
3729 help='file which contains message for patchset')
3728 parser.add_option('-t', dest='title', 3730 parser.add_option('-t', dest='title',
3729 help='title for patchset (Rietveld only)') 3731 help='title for patchset (Rietveld only)')
3730 parser.add_option('-r', '--reviewers', 3732 parser.add_option('-r', '--reviewers',
3731 action='append', default=[], 3733 action='append', default=[],
3732 help='reviewer email addresses') 3734 help='reviewer email addresses')
3733 parser.add_option('--cc', 3735 parser.add_option('--cc',
3734 action='append', default=[], 3736 action='append', default=[],
3735 help='cc email addresses') 3737 help='cc email addresses')
3736 parser.add_option('-s', '--send-mail', action='store_true', 3738 parser.add_option('-s', '--send-mail', action='store_true',
3737 help='send email to reviewer immediately') 3739 help='send email to reviewer immediately')
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
3773 (options, args) = parser.parse_args(args) 3775 (options, args) = parser.parse_args(args)
3774 _process_codereview_select_options(parser, options) 3776 _process_codereview_select_options(parser, options)
3775 auth_config = auth.extract_auth_config_from_options(options) 3777 auth_config = auth.extract_auth_config_from_options(options)
3776 3778
3777 if git_common.is_dirty_git_tree('upload'): 3779 if git_common.is_dirty_git_tree('upload'):
3778 return 1 3780 return 1
3779 3781
3780 options.reviewers = cleanup_list(options.reviewers) 3782 options.reviewers = cleanup_list(options.reviewers)
3781 options.cc = cleanup_list(options.cc) 3783 options.cc = cleanup_list(options.cc)
3782 3784
3785 if options.message_file:
3786 if options.message:
3787 parser.error('only one of --message and --message-file allowed.')
3788 options.message = gclient_utils.FileRead(options.message_file)
3789 options.message_file = None
3790
3783 # For sanity of test expectations, do this otherwise lazy-loading *now*. 3791 # For sanity of test expectations, do this otherwise lazy-loading *now*.
3784 settings.GetIsGerrit() 3792 settings.GetIsGerrit()
3785 3793
3786 cl = Changelist(auth_config=auth_config, codereview=options.forced_codereview) 3794 cl = Changelist(auth_config=auth_config, codereview=options.forced_codereview)
3787 return cl.CMDUpload(options, args, orig_args) 3795 return cl.CMDUpload(options, args, orig_args)
3788 3796
3789 3797
3790 def IsSubmoduleMergeCommit(ref): 3798 def IsSubmoduleMergeCommit(ref):
3791 # When submodules are added to the repo, we expect there to be a single 3799 # When submodules are added to the repo, we expect there to be a single
3792 # non-git-svn merge commit at remote HEAD with a signature comment. 3800 # non-git-svn merge commit at remote HEAD with a signature comment.
(...skipping 1278 matching lines...) Expand 10 before | Expand all | Expand 10 after
5071 if __name__ == '__main__': 5079 if __name__ == '__main__':
5072 # These affect sys.stdout so do it outside of main() to simplify mocks in 5080 # These affect sys.stdout so do it outside of main() to simplify mocks in
5073 # unit testing. 5081 # unit testing.
5074 fix_encoding.fix_encoding() 5082 fix_encoding.fix_encoding()
5075 setup_color.init() 5083 setup_color.init()
5076 try: 5084 try:
5077 sys.exit(main(sys.argv[1:])) 5085 sys.exit(main(sys.argv[1:]))
5078 except KeyboardInterrupt: 5086 except KeyboardInterrupt:
5079 sys.stderr.write('interrupted\n') 5087 sys.stderr.write('interrupted\n')
5080 sys.exit(1) 5088 sys.exit(1)
OLDNEW
« 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