Home | History | Annotate | Download | only in checkout

Lines Matching refs:git_commit

103     def _modified_files_matching_predicate(self, git_commit, predicate, changed_files=None):
108 changed_files = self._scm.changed_files(git_commit)
112 def modified_changelogs(self, git_commit, changed_files=None):
113 return self._modified_files_matching_predicate(git_commit, self.is_path_to_changelog, changed_files=changed_files)
115 def modified_non_changelogs(self, git_commit, changed_files=None):
116 return self._modified_files_matching_predicate(git_commit, lambda path: not self.is_path_to_changelog(path), changed_files=changed_files)
118 def commit_message_for_this_commit(self, git_commit, changed_files=None):
119 changelog_paths = self.modified_changelogs(git_commit, changed_files)
139 def suggested_reviewers(self, git_commit, changed_files=None):
140 changed_files = self.modified_non_changelogs(git_commit, changed_files)
146 def bug_id_for_this_commit(self, git_commit, changed_files=None):
148 return parse_bug_id_from_changelog(self.commit_message_for_this_commit(git_commit, changed_files).message())
171 changelog_paths = self.modified_changelogs(git_commit=None)