Skip to content
This repository was archived by the owner on Sep 3, 2019. It is now read-only.

Commit a7ba4ad

Browse files
committed
We moved to github.com
Signed-off-by: Johannes Schindelin <[email protected]>
1 parent 9f3a205 commit a7ba4ad

5 files changed

Lines changed: 13 additions & 18 deletions

File tree

.gitmodules

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[submodule "git"]
22
path = git
3-
url = git://repo.or.cz/git/mingw/4msysgit.git/
3+
url = git://github.com/msysgit/git
44
[submodule "html"]
55
path = doc/git/html
66
url = git://git.kernel.org/pub/scm/git/git.git

share/msysGit/initialize.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
#!/bin/sh
22

3-
# This script initializes /.git from msysgit.git on repo.or.cz
3+
# This script initializes /.git from msysgit/msysgit on github.com
44

55
test -d /git/.git || {
66
cd /git &&
77
git init &&
88
git config core.autocrlf false &&
99
git remote add -f origin \
10-
[email protected]:/srv/git/git/mingw/4msysgit.git &&
10+
git://github.com/msysgit/git &&
1111
if test ! -f /etc/full-git-sha1 ||
1212
! git reset $(cat /etc/full-git-sha1)
1313
then
@@ -23,7 +23,7 @@ test -d /.git || {
2323
cd / &&
2424
git init &&
2525
git config core.autocrlf false &&
26-
git remote add -f origin [email protected]:/srv/git/msysgit.git &&
26+
git remote add -f origin git://github.com/msysgit/msysgit &&
2727
if test ! -f /etc/full-msysgit-sha1 ||
2828
! git reset $(cat /etc/full-msysgit-sha1)
2929
then

share/msysGit/net/fileList-mingw.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
bin/curl.exe
2+
bin/curl-ca-bundle.crt
23
bin/libcrypto.dll
34
bin/libcurl-4.dll
45
bin/libiconv-2.dll

share/msysGit/net/fileList.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ libexec/git-core/git-index-pack.exe
1010
libexec/git-core/git-sh-setup
1111
libexec/git-core/git-submodule
1212
libexec/git-core/git-remote-http.exe
13+
libexec/git-core/git-remote-https.exe
1314
bin/cat.exe
1415
bin/expr.exe
1516
bin/mkdir.exe

share/msysGit/net/setup-msysgit.sh

Lines changed: 7 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,8 @@ echo
3636
echo -------------------------------------------------------
3737
echo Fetching the latest MSys environment
3838
echo -------------------------------------------------------
39-
MSYSGIT_REPO_GIT=git://repo.or.cz/msysgit.git
40-
MSYSGIT_REPO_GIT_MOB=ssh://[email protected]/srv/git/msysgit.git
41-
MSYSGIT_REPO_HTTP=http://repo.or.cz/r/msysgit.git
39+
MSYSGIT_REPO_GIT=git://github.com/msysgit/msysgit
40+
MSYSGIT_REPO_HTTP=https://github.com/msysgit/msysgit.git
4241

4342
# Multiply git.exe
4443

@@ -48,16 +47,14 @@ do
4847
"$INSTALL_PATH/installer-tmp/bin/git-$builtin.exe"
4948
done
5049

50+
git config --system http.sslCAinfo /bin/curl-ca-bundle.crt
5151
git init &&
5252
git config core.autocrlf false &&
5353
git config remote.origin.url $MSYSGIT_REPO_GIT &&
5454
git config remote.origin.fetch \
5555
+refs/heads/@@MSYSGITBRANCH@@:refs/remotes/origin/@@MSYSGITBRANCH@@ &&
5656
git config branch.@@MSYSGITBRANCH@@.remote origin &&
5757
git config branch.@@MSYSGITBRANCH@@.merge refs/heads/@@MSYSGITBRANCH@@ &&
58-
git config remote.mob.url $MSYSGIT_REPO_GIT_MOB &&
59-
git config remote.mob.fetch +refs/heads/@@MSYSGITBRANCH@@:refs/remotes/origin/mob &&
60-
git config remote.mob.push HEAD:mob &&
6158

6259
USE_HTTP=
6360
git fetch || {
@@ -96,17 +93,16 @@ echo -------------------------------------------------------
9693

9794
case "$USE_HTTP" in
9895
t)
99-
GIT_REPO_URL=http://repo.or.cz/r/git.git/
96+
GIT_REPO_URL=https://github.com/git/git.git
10097
MINGW_REPO_URL=http://repo.or.cz/r/git/mingw.git/
101-
MINGW4MSYSGIT_REPO_URL=http://repo.or.cz/r/git/mingw/4msysgit.git/
98+
MINGW4MSYSGIT_REPO_URL=https://github.com/msysgit/git.git
10299
;;
103100
'')
104-
GIT_REPO_URL=git://repo.or.cz/git.git
101+
GIT_REPO_URL=git://github.com/git/git
105102
MINGW_REPO_URL=git://repo.or.cz/git/mingw.git
106-
MINGW4MSYSGIT_REPO_URL=git://repo.or.cz/git/mingw/4msysgit.git
103+
MINGW4MSYSGIT_REPO_URL=git://github.com/msysgit/git
107104
;;
108105
esac
109-
MINGW4MSYSGIT_MOB_URL=ssh://[email protected]/srv/git/git/mingw/4msysgit.git
110106

111107
git config submodule.git.url $MINGW4MSYSGIT_REPO_URL &&
112108
mkdir -p git &&
@@ -121,9 +117,6 @@ git config remote.mingw.fetch '+refs/heads/*:refs/remotes/mingw/*' &&
121117
git fetch --tags mingw &&
122118
git config remote.origin.url $MINGW4MSYSGIT_REPO_URL &&
123119
git config remote.origin.fetch '+refs/heads/*:refs/remotes/origin/*' &&
124-
git config remote.mob.url $MINGW4MSYSGIT_MOB_URL &&
125-
git config remote.mob.fetch '+refs/heads/*:refs/remotes/origin/*' &&
126-
git config remote.mob.push 'HEAD:mob' &&
127120
git fetch --tags origin &&
128121
if test -z "@@FOURMSYSGITBRANCH@@"
129122
then

0 commit comments

Comments
 (0)