From d99c2b46ac57f574c4ae1b382d44ba21046e845d Mon Sep 17 00:00:00 2001 From: Jannis Leidel Date: Wed, 1 Jul 2009 00:56:23 +0200 Subject: [PATCH] Updated Subversion and Git schemes. --- pip.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pip.py b/pip.py index 55f548aef..852b1bd0a 100644 --- a/pip.py +++ b/pip.py @@ -2633,7 +2633,7 @@ _svn_revision_re = re.compile(r'Revision: (.+)') class Subversion(VersionControl): name = 'svn' dirname = '.svn' - schemes = ('svn', 'svn+ssh') + schemes = ('svn', 'svn+ssh', 'svn+http', 'svn+https') bundle_file = 'svn-checkout.txt' guide = ('# This was an svn checkout; to make it a checkout again run:\n' 'svn checkout --force -r %(rev)s %(url)s .\n') @@ -2885,7 +2885,7 @@ vcs.register(Subversion) class Git(VersionControl): name = 'git' dirname = '.git' - schemes = ('git', 'git+http', 'git+ssh') + schemes = ('git', 'git+http', 'git+ssh', 'git+git') bundle_file = 'git-clone.txt' guide = ('# This was a Git repo; to make it a repo again run:\n' 'git init\ngit remote add origin %(url)s -f\ngit checkout %(rev)s\n')