Lines Matching full:clone
6 Forbid unsafe protocol URLs in Repo.clone{,_from}()
7 Since the URL is passed directly to git clone, and the remote-ext helper
160 :param url: url to clone from
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…
210 … progress.update(END | CLONE, 0, 1, prefix + "Done cloning to %s" % checkout_module_abspath)
398 + # https://git-scm.com/docs/git-clone#Documentation/git-clone.txt---upload-packltupload-pac…
403 + # https://git-scm.com/docs/git-clone#Documentation/git-clone.txt---configltkeygtltvaluegt
431 …proc = git.clone("--", multi, Git.polish_url(str(url)), clone_path, with_extended_output=True, as_…
437 def clone(self, path: PathLike, progress: Optional[Callable] = None,
442 """Create a clone from this repository.
446 option per list item which is passed exactly as specified to clone.
453 * All remaining keyword arguments are given to the git-clone command
467 """Create a clone from the given URL
469 … :param url: valid git url, see http://www.kernel.org/pub/software/scm/git/docs/git-clone.html#URLS
473 :param multi_options: See ``clone`` method
475 :param kwargs: see the ``clone`` method