Lines Matching refs:git_hash
145 def GitChangedFiles(self, git_hash, **kwargs):
146 assert git_hash
149 git_hash,
150 "%s^" % git_hash]), **kwargs)
165 def GitLog(self, n=0, format="", grep="", git_hash="", parent_hash="",
167 assert not (git_hash and parent_hash)
177 if git_hash:
178 args.append(git_hash)
191 def GitGetPatch(self, git_hash, **kwargs):
192 assert git_hash
193 return self.Git(MakeArgs(["log", "-1", "-p", git_hash]), **kwargs)
260 def GetCommitPositionNumber(self, git_hash, **kwargs):
269 git_log = self.GitLog(format='%B', n=1, git_hash=git_hash, **kwargs)
286 git_hash)