Lines Matching refs:gitlog
479 gitlog = self.gitcmd(cmd, True)
480 if gitlog.exit_status != 0:
481 logging.error(gitlog.stderr)
482 raise error.CmdError('Failed to find git sha1 revision', gitlog)
484 gitlog.stdout.strip('\n')
505 gitlog = self.gitcmd(cmd, True)
506 if gitlog.exit_status != 0:
507 logging.error(gitlog.stderr)
508 raise error.CmdError('Failed to checkout git branch', gitlog)
510 logging.info(gitlog.stdout)
530 gitlog = self.gitcmd(cmd, True)
531 if gitlog.exit_status != 0:
532 logging.error(gitlog.stderr)
533 raise error.CmdError('Failed to get git branch', gitlog)
535 return gitlog.stdout.strip('\n')
537 branch = [b[2:] for b in gitlog.stdout.split('\n')
553 gitlog = self.gitcmd(cmd, True)
554 if gitlog.exit_status != 0:
555 logging.error(gitlog.stderr)
556 raise error.CmdError('Failed to get git status', gitlog)
558 return gitlog.stdout.strip('\n')
568 gitlog = self.gitcmd(cmd)
570 if gitlog.exit_status != 0:
571 logging.error(gitlog.stderr)
574 return gitlog.stdout.strip('\n')
581 gitlog = self.gitcmd('remote')
583 if gitlog.exit_status != 0:
584 logging.error(gitlog.stderr)
587 return gitlog.stdout.strip('\n')