From c75f522b4c9ddf46ba9e5c72f8a4cdb3132b54cd Mon Sep 17 00:00:00 2001 From: Vitaly Zdanevich Date: Fri, 8 Mar 2024 17:10:52 +0400 Subject: Add git@ Signed-off-by: Vitaly Zdanevich Closes: https://github.com/pkgcore/pkgcore/pull/434 Signed-off-by: Arthur Zamarin --- src/pkgcore/sync/git.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/pkgcore/sync/git.py b/src/pkgcore/sync/git.py index 48d6b3518..ce8f6f8e7 100644 --- a/src/pkgcore/sync/git.py +++ b/src/pkgcore/sync/git.py @@ -11,9 +11,10 @@ class git_syncer(base.VcsSyncer): supported_uris = ( ("git://", 5), ("git+", 5), + ("git@", 5), ) - supported_protocols = ("http://", "https://", "git://") + supported_protocols = ("http://", "https://", "git://", "git@") supported_exts = (".git",) @classmethod -- cgit v1.2.3-65-gdbad