Shortcuts - libvcs._internal.shortcuts
#
Shortcuts for creating repos.
Note
This is an internal API not covered by versioning policy.
- exception libvcs._internal.shortcuts.VCSNoMatchFoundForUrl(url, *args)[source]#
Bases:
LibVCSException
- exception libvcs._internal.shortcuts.VCSMultipleMatchFoundForUrl(url, *args)[source]#
Bases:
LibVCSException
- exception libvcs._internal.shortcuts.VCSNotSupported(url, vcs, *args)[source]#
Bases:
LibVCSException
- libvcs._internal.shortcuts.create_project(*, url, dir, vcs=None, progress_callback=None, **kwargs)[source]#
Return an object representation of a VCS repository.
- Return type:
- Parameters:
Examples
>>> from libvcs._internal.shortcuts import create_project >>> r = create_project( ... url=f'file://{create_git_remote_repo()}', ... vcs='git', ... dir=tmp_path ... )
>>> isinstance(r, GitSync) True
create_project can also guess VCS for certain URLs:
>>> r = create_project( ... # Note the git+ before the URL ... url=f'git+file://{create_git_remote_repo()}', ... dir=tmp_path ... )
>>> isinstance(r, GitSync) True