Skip to content

Commit c98567e

Browse files
committed
Fix repo server address
Move the default clone server from github to gerrit. Change-Id: If9d090f95d5b18054b5237d2905af88b17247901 Signed-off-by: Baohua Yang <[email protected]>
1 parent 84431e3 commit c98567e

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

devenv/setupRHELonZ.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
# yum install git
1111
# mkdir -p $HOME/git/src/github.com/hyperledger
1212
# cd $HOME/git/src/github.com/hyperledger
13-
# git clone https://github.com/hyperledger/fabric.git
13+
# git clone http://gerrit.hyperledger.org/r/fabric
1414
# source fabric/devenv/setupRHELonZ.sh
1515
# make peer unit-test behave
1616

docs/Setup/Chaincode-setup.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ Next, you'll need to clone the Hyperledger fabric to your local $GOPATH, so that
181181
```
182182
mkdir -p $GOPATH/src/github.com/hyperledger
183183
cd $GOPATH/src/github.com/hyperledger
184-
git clone https://github.com/hyperledger/fabric.git
184+
git clone http://gerrit.hyperledger.org/r/fabric
185185
```
186186

187187
Now, you should be able to build your chaincode.

docs/dev-setup/build.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ sudo su
148148
yum install git
149149
mkdir -p $HOME/git/src/github.com/hyperledger
150150
cd $HOME/git/src/github.com/hyperledger
151-
git clone https://github.com/hyperledger/fabric.git
151+
git clone http://gerrit.hyperledger.org/r/fabric
152152
source fabric/devenv/setupRHELonZ.sh
153153
```
154154
From this point, you can proceed as described above for the Vagrant development environment.

sdk/node/bin/run-unit-tests.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ prepareExampleForDeployInNetworkMode() {
133133
mkdir -p vendor/github.com/hyperledger
134134
cd vendor/github.com/hyperledger
135135
echo "cloning github.com/hyperledger/fabric; please wait ..."
136-
git clone https://github.com/hyperledger/fabric > /dev/null
136+
git clone http://gerrit.hyperledger.org/r/fabric > /dev/null
137137
cp -r fabric/vendor/github.com/op ..
138138
cd ../../..
139139
go build

0 commit comments

Comments
 (0)