| D | git_repo.py | 7 # https://www.apache.org/licenses/LICENSE-2.0 14 """Install and check status of Git repository-based packages.""" 29 '-c', 36 ) -> str: 40 ['git'] + _GIT_CONFIG + ['-C', repo, *args], 52 ) -> subprocess.CompletedProcess: 55 ['git'] + _GIT_CONFIG + ['-C', repo, *args], check=True 60 """Install and check status of Git repository-based packages.""" 63 self, url, *args, commit='', tag='', sparse_list=None, **kwargs argument 66 if not (commit or tag): [all …]
|