Home | History | Annotate | Download | only in commands

Lines Matching refs:commit_message

311     def _comment_text_for_commit(self, options, commit_message, tool, commit_id):
314 comment_text = commit_message.body(lstrip=True)
326 commit_message = tool.scm().commit_message_for_local_commit(commit_id)
329 bug_id = options.bug_id or parse_bug_id_from_changelog(commit_message.message()) or parse_bug_id_from_changelog(tool.scm().create_patch(git_commit=commit_id))
340 description = options.description or commit_message.description(lstrip=True, strip_url=True)
341 comment_text = self._comment_text_for_commit(options, commit_message, tool, commit_id)
452 commit_message = tool.scm().commit_message_for_local_commit(commit_id)
453 bug_title = commit_message.description(lstrip=True, strip_url=True)
454 comment_text = commit_message.body(lstrip=True)
473 commit_message = tool.checkout().commit_message_for_this_commit(options.git_commit)
474 bug_title = commit_message.description(lstrip=True, strip_url=True)
475 comment_text = commit_message.body(lstrip=True)