(self, refspec, path, **kwargs)
| 184 | return self.Git(MakeArgs(args), **kwargs) |
| 185 | |
| 186 | def GitShowFile(self, refspec, path, **kwargs): |
| 187 | assert refspec |
| 188 | assert path |
| 189 | return self.Git(MakeArgs(["show", "%s:%s" % (refspec, path)]), **kwargs) |
| 190 | |
| 191 | def GitGetPatch(self, git_hash, **kwargs): |
| 192 | assert git_hash |