You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
0 commit comments