Lines Matching refs:sha
40 sha: str
116 sha: str = attr.ib() variable in Commit
146 'git', 'cherry-pick', '-x', self.sha,
198 async def get_new_commits(sha: str) -> typing.List[typing.Tuple[str, str]]:
225 async def is_commit_in_branch(sha: str) -> bool:
228 'git', 'merge-base', '--is-ancestor', sha, 'HEAD',
236 async def full_sha(sha: str) -> str:
239 'git', 'rev-parse', sha,
252 'git', 'log', '--format=%B', '-1', commit.sha,
308 shas: typing.Set[str] = set(c.sha for c in previous if c.nominated)
316 shas.add(commit.sha)
322 if oldc.sha == commit.because_sha:
349 for i, (sha, desc) in enumerate(new):
351 inner(Commit(sha, desc), version, m_commits, i, cb)))