Lines Matching refs:Git
50 @@ -225,6 +228,8 @@ class Git(LazyMixin):
59 @@ -400,6 +405,44 @@ class Git(LazyMixin):
68 + Git allows "remote helpers" that have the form `<transport>::<address>`,
104 @@ -1068,12 +1111,12 @@ class Git(LazyMixin):
119 @@ -1154,7 +1197,7 @@ class Git(LazyMixin):
255 + Git.check_unsafe_protocols(new_url)
293 - repo.git.remote(scmd, name, Git.polish_url(url), **kwargs)
294 + url = Git.polish_url(url)
296 + Git.check_unsafe_protocols(url)
317 + Git.check_unsafe_protocols(ref)
320 + Git.check_unsafe_options(options=list(kwargs.keys()), unsafe_options=self.unsafe_git_f…
339 + refspec = Git._unpack_args(refspec or [])
342 + Git.check_unsafe_protocols(ref)
345 + Git.check_unsafe_options(options=list(kwargs.keys()), unsafe_options=self.unsafe_git_p…
364 + refspec = Git._unpack_args(refspec or [])
367 + Git.check_unsafe_protocols(ref)
370 + Git.check_unsafe_options(options=list(kwargs.keys()), unsafe_options=self.unsafe_git_p…
413 … def _clone(cls, git: 'Git', url: PathLike, path: PathLike, odb_default_type: Type[GitCmdObjectDB],
427 + Git.check_unsafe_protocols(str(url))
429 + Git.check_unsafe_options(options=multi_options, unsafe_options=cls.unsafe_git_clone_op…
431 …proc = git.clone("--", multi, Git.polish_url(str(url)), clone_path, with_extended_output=True, as_…