From d94841eb374f295854dc3c1b86f54bc1d1ac89e0 Mon Sep 17 00:00:00 2001 From: "Kyle J. McKay" Date: Sat, 6 Jul 2013 03:28:52 -0700 Subject: [PATCH] Switch .gitmodules URLs from git: to http: They all point to repo.or.cz, but fetching over the git: protocol is subject to refused connections due to sporadic high system load. The http: URLs do not suffer from the same problem. --- .gitmodules | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitmodules b/.gitmodules index 27422e7..cbc0aac 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,12 +1,12 @@ [submodule "git.git"] path = git.git - url = git://repo.or.cz/git/gitweb.git + url = http://repo.or.cz/r/git/gitweb.git [submodule "git-browser.git"] path = git-browser.git - url = git://repo.or.cz/git-browser.git + url = http://repo.or.cz/r/git-browser.git [submodule "bzr-fastimport.git"] path = bzr-fastimport.git - url = git://repo.or.cz/bzr-fastimport/rorcz.git + url = http://repo.or.cz/r/bzr-fastimport/rorcz.git [submodule "ezcert.git"] path = ezcert.git - url = git://repo.or.cz/ezcert.git + url = http://repo.or.cz/r/ezcert.git -- 2.11.4.GIT