Lines Matching refs:commit_hash
101 def _create_commit_description(self, commit_hash): argument
102 patch_merge_desc = self.GitLog(n=1, format="%s", git_hash=commit_hash)
104 description += "Revision: " + commit_hash + "\n\n"
119 for commit_hash in self["full_revision_list"]:
120 msg_pieces.append(self._create_commit_description(commit_hash))
122 commit_hash = self["full_revision_list"][0]
123 full_description = self._create_commit_description(commit_hash).split("\n")
134 for commit_hash in self["full_revision_list"]:
135 msg = self.GitLog(n=1, git_hash=commit_hash)
156 for commit_hash in self["full_revision_list"]:
158 % (commit_hash, self["merge_to_branch"]))
159 patch = self.GitGetPatch(commit_hash)