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