HomeSort by relevance Sort by last modified time
    Searched refs:giturl (Results 1 - 3 of 3) sorted by null

  /external/autotest/server/
git.py 18 def __init__(self, repodir, giturl, weburl=None):
20 self.giturl = giturl
22 self.git_repo = revision_control.GitRepo(self.repodir, self.giturl,
65 'giturl' in 'repodir' directory to be used by build/install
git_kernel.py 19 def __init__(self, repodir, giturl, weburl=None):
20 super(GitKernel, self).__init__(repodir, giturl, weburl)
  /external/autotest/client/common_lib/
revision_control.py 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): member in class:GitRepo
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
    [all...]

Completed in 1264 milliseconds