Lines Matching refs:git
29 """Raised when `git clone` fails to create the repository."""
75 a failed `git clone` operation.
77 a failed `git clone` operation.
78 @var _MANIFEST_VERSIONS_URL: URL of the internal manifest-versions git repo.
84 @var _git: absolute path of git binary.
91 'chromeos/manifest-versions.git')
105 self._git = _SystemOutput('which git')
113 """Determine if any builds passed since git |revision|.
115 @param revision: the git revision to look back to.
135 Clone manifest-versions.git into tempdir managed by this instance.
139 # 1. suite_scheduler fails executing some `git` command.
146 # 6. `git clone` fails, and we go back to step 2.
149 # retry failed `git clone` operations for a time before we
158 logging.debug('Cloning manifest-versions.git,'
161 logging.debug('manifest-versions.git cloned.')
188 """Return map of branch:manifests for |board| since git |rev|.
270 """Return the latest checked-out git revision in manifest-versions.git.
272 @return the git hash of the latest git revision.
285 """Build a git CLI |command|, passing space-delineated |args|.
287 @param command: the git sub-command to use.
288 @param args: args for the git sub-command. Will be space-delineated.
291 return '%s --git-dir=%s --work-tree=%s %s %s' % (
292 self._git, os.path.join(self._tempdir.name, '.git'),
300 # Also, note that --work-tree and --git-dir interact oddly with
301 # 'git clone', so we don't use them.
308 """Return a git command that shows file names added by commits."""
318 @param git_rev: check for manifests newer than this git commit.
358 @param since_spec: a formatted arg to git log that specifies a starting
362 @raise QueryException if git log or git show errors occur.
372 # If we pass nothing to git show, we get unexpected results.
373 # So, return early if git log is going to give us nothing.