Lines Matching full:giturl
50 def __init__(self, repodir, giturl=None, weburl=None, abs_work_tree=None):
55 @param giturl: master repo git url.
72 self._giturl = giturl
89 def giturl(self):
91 A giturl is necessary to perform certain actions (clone, pull, fetch)
159 Clones a repo using giturl and repodir.
167 logging.info('Cloning git repo %s', self.giturl)
168 cmd = 'clone %s %s ' % (self.giturl, self.repodir)
184 Pulls into repodir using giturl.
188 @raises GitPullError: if pulling from giturl fails.
190 logging.info('Updating git repo %s', self.giturl)
194 cmd += self.giturl
248 @raises GitFetchError: if we fail to fetch all files from giturl.
250 logging.info('fetching from repo %s', self.giturl)
254 e_msg = 'Failed to fetch from %s' % self.giturl
289 self.gitcmd('config remote.origin.url %s' % self.giturl,
307 'giturl' in 'repodir' directory to be used by build/install