Skip to content

Commit abde06a

Browse files
committed
chore(git): Remove another already supported netloc scheme ('git')
See also: - #378 (removes 'git+ssh') - python/cpython@ead169d - https://bugs.python.org/issue8657 or python/cpython#52903 (comment)
1 parent ce25eb6 commit abde06a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

libvcs/projects/git.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ def convert_pip_url(pip_url: str) -> VCSLocation:
157157

158158
class GitProject(BaseProject):
159159
bin_name = "git"
160-
schemes = ("git", "git+http", "git+https", "git+file")
160+
schemes = ("git+http", "git+https", "git+file")
161161
_remotes: GitProjectRemoteDict
162162

163163
def __init__(

0 commit comments

Comments
 (0)