Lines Matching refs:commit_msg
440 commit_msg = []
443 commit_msg.extend([
451 commit_msg.append('%s %s' % (adjective, noun))
459 commit_msg.append('* %s: %s..%s' % (c.path, c.current_version, c.new_version))
461 commit_msg.append('* %s: %s/+log/%s..%s' %
469 commit_msg.append('DEPS diff: %s\n' % change_url)
471 commit_msg.append('No dependencies changed.')
475 commit_msg.append('Clang version changed %s:%s' %
481 commit_msg.append('Details: %s\n' % change_url)
483 commit_msg.append('No update to Clang.\n')
492 commit_msg.append('TBR=%s' % tbr_authors)
493 commit_msg.append('BUG=None')
495 return '\n'.join(commit_msg)
590 def _LocalCommit(commit_msg, dry_run): argument
594 _RunCommand(['git', 'commit', '-m', commit_msg])
597 def _LocalCommitAmend(commit_msg, dry_run): argument
608 new_commit_msg = old_commit_msg[:bug_index] + commit_msg + '\n' + old_commit_msg[bug_index:]
741 commit_msg = GenerateCommitMessage(rev_update, current_commit_pos, new_commit_pos,
743 logging.debug('Commit message:\n%s', commit_msg)
753 _LocalCommitAmend(commit_msg, opts.dry_run)
758 _LocalCommit(commit_msg, opts.dry_run)