Skip to content

Commit ea54328

Browse files
committed
Merge pull request #3 from dbaxa/update_gitmodules
Update gitmodules to point to the https location of the git repositories. Using http causes an additional redirect to https, see this curl log: curl -v http://github.com/gitpython-developers/async.git -A git/1.7.3 * About to connect() to github.com port 80 (#0) * Trying 207.97.227.239... * connected * Connected to github.com (207.97.227.239) port 80 (#0) > GET /gitpython-developers/async.git HTTP/1.1 > User-Agent: git/1.7.3 > Host: github.com > Accept: */* > * additional stuff not fine transfer.c:1037: 0 0 * HTTP 1.1 or later with persistent connection, pipelining supported < HTTP/1.1 301 Moved Permanently < Server: nginx < Date: Sun, 04 Nov 2012 23:46:08 GMT < Content-Type: text/html < Content-Length: 178 < Location: http://github.com/gitpython-developers/async < Connection: keep-alive < <html> <head><title>301 Moved Permanently</title></head> <body bgcolor="white"> <center><h1>301 Moved Permanently</h1></center> <hr><center>nginx</center> </body> </html> * Connection #0 to host github.com left intact * Closing connection #0 curl -v http://github.com/gitpython-developers/async -A git/1.7.3 * About to connect() to github.com port 80 (#0) * Trying 207.97.227.239... * connected * Connected to github.com (207.97.227.239) port 80 (#0) > GET /gitpython-developers/async HTTP/1.1 > User-Agent: git/1.7.3 > Host: github.com > Accept: */* > * additional stuff not fine transfer.c:1037: 0 0 * HTTP 1.1 or later with persistent connection, pipelining supported < HTTP/1.1 301 Moved Permanently < Server: nginx < Date: Sun, 04 Nov 2012 23:46:16 GMT < Content-Type: text/html < Content-Length: 178 < Connection: close < Location: https://github.com/gitpython-developers/async.git < <html> <head><title>301 Moved Permanently</title></head> <body bgcolor="white"> <center><h1>301 Moved Permanently</h1></center> <hr><center>nginx</center> </body> </html> * Closing connection #0
2 parents ec6998f + 0328caa commit ea54328

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.gitmodules

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[submodule "async"]
22
path = gitdb/ext/async
3-
url = http://github.com/gitpython-developers/async.git
3+
url = https://github.com/gitpython-developers/async.git
44
[submodule "smmap"]
55
path = gitdb/ext/smmap
6-
url = http://github.com/Byron/smmap.git
6+
url = https://github.com/Byron/smmap.git

0 commit comments

Comments
 (0)