OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:giturl
(Results
1 - 5
of
5
) sorted by null
/external/autotest/server/samples/
git_kernel.srv
5
giturl
= 'git://git.kernel.org/pub/scm/linux/kernel/git/avi/kvm.git'
17
kernel = git_kernel.GitKernel(repodir,
giturl
, weburl)
/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
...]
revision_control_unittest.py
172
Test that git clone raises a ValueError if
giturl
is unset.
181
Test that git pull raises a ValueError if
giturl
is unset.
190
Test that git fetch raises a ValueError if
giturl
is unset.
Completed in 605 milliseconds