Lines Matching refs:sha
40 sha: str
116 sha: str = attr.ib() variable in Commit
145 ['git', 'show', '--no-patch', '--format=%cs', self.sha],
154 'git', 'cherry-pick', '-x', self.sha,
206 async def get_new_commits(sha: str) -> typing.List[typing.Tuple[str, str]]:
233 async def is_commit_in_branch(sha: str) -> bool:
236 'git', 'merge-base', '--is-ancestor', sha, 'HEAD',
244 async def full_sha(sha: str) -> str:
247 'git', 'rev-parse', sha,
260 'git', 'log', '--format=%B', '-1', commit.sha,
316 shas: typing.Set[str] = set(c.sha for c in previous if c.nominated)
324 shas.add(commit.sha)
330 if oldc.sha == commit.because_sha:
357 for i, (sha, desc) in enumerate(new):
359 inner(Commit(sha, desc), version, m_commits, i, cb)))