Home
last modified time | relevance | path

Searched refs:Repo (Results 1 – 10 of 10) sorted by relevance

/OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/python/python3-git/
H A D0001-python3-git-CVE-2022-24439-fix-from-PR-1521.patch6 Forbid unsafe protocol URLs in Repo.clone{,_from}()
155 - def _clone_repo(cls, repo: 'Repo', url: str, path: PathLike, name: str, **kwargs: Any) -> 'Rep…
156 + def _clone_repo(cls, repo: 'Repo', url: str, path: PathLike, name: str,
157 … allow_unsafe_options: bool = False, allow_unsafe_protocols: bool = False,**kwargs: Any) -> 'Repo':
158 """:return: Repo instance of newly cloned repository
165 - clone = git.Repo.clone_from(url, module_checkout_path, **kwargs)
166 + clone = git.Repo.clone_from(url, module_checkout_path, allow_unsafe_options=allow_unsafe_o…
173 def add(cls, repo: 'Repo', name: str, path: PathLike, url: Union[str, None] = None,
237 def __init__(self, repo: 'Repo', name: str) -> None:
284 - def create(cls, repo: 'Repo', name: str, url: str, **kwargs: Any) -> 'Remote':
[all …]
H A D0001-python3-git-CVE-2022-24439-fix-from-PR-1518.patch77 @@ -1072,7 +1072,7 @@ class Repo(object):
86 @@ -1173,7 +1173,7 @@ class Repo(object):
/OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/repo/
H A Drepo_2.22.bb5 DESCRIPTION = "Repo is a tool built on top of Git. Repo helps manage many Git repositories, does th…
/OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/utils/
H A Dmetadata.py64 from git import Repo, InvalidGitRepositoryError, NoSuchPathError
81 repo = Repo(path, search_parent_directories=True)
/OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/selftest/cases/oelib/
H A Dbuildhistory.py19 from git import Repo
20 self.repo = Repo.init(self.repo_path)
/OK3568_Linux_fs/yocto/poky/bitbake/lib/bb/fetch2/
H A Drepo.py20 class Repo(FetchMethod): class
H A D__init__.py1979 methods.append(repo.Repo())
/OK3568_Linux_fs/kernel/scripts/
H A Dspdxcheck.py240 repo = git.Repo(os.getcwd())
/OK3568_Linux_fs/yocto/poky/meta/lib/oe/
H A Dbuildhistory_analysis.py617 repo = git.Repo(repopath)
/OK3568_Linux_fs/yocto/poky/bitbake/doc/bitbake-user-manual/
H A Dbitbake-user-manual-fetching.rst641 Repo Fetcher (``repo://``)