diff --git a/devenv/setupRHELonZ.sh b/devenv/setupRHELonZ.sh index 9a511637b29..878e31109b0 100644 --- a/devenv/setupRHELonZ.sh +++ b/devenv/setupRHELonZ.sh @@ -10,7 +10,7 @@ # yum install git # mkdir -p $HOME/git/src/github.com/hyperledger # cd $HOME/git/src/github.com/hyperledger -# git clone https://github.com/hyperledger/fabric.git +# git clone http://gerrit.hyperledger.org/r/fabric # source fabric/devenv/setupRHELonZ.sh # make peer unit-test behave diff --git a/docs/Setup/Chaincode-setup.md b/docs/Setup/Chaincode-setup.md index 261e16bab34..6a4dd9cd9cb 100644 --- a/docs/Setup/Chaincode-setup.md +++ b/docs/Setup/Chaincode-setup.md @@ -181,7 +181,7 @@ Next, you'll need to clone the Hyperledger fabric to your local $GOPATH, so that ``` mkdir -p $GOPATH/src/github.com/hyperledger cd $GOPATH/src/github.com/hyperledger -git clone https://github.com/hyperledger/fabric.git +git clone http://gerrit.hyperledger.org/r/fabric ``` Now, you should be able to build your chaincode. diff --git a/docs/dev-setup/build.md b/docs/dev-setup/build.md index 185b9457ee4..6b1cea40903 100644 --- a/docs/dev-setup/build.md +++ b/docs/dev-setup/build.md @@ -148,7 +148,7 @@ sudo su yum install git mkdir -p $HOME/git/src/github.com/hyperledger cd $HOME/git/src/github.com/hyperledger -git clone https://github.com/hyperledger/fabric.git +git clone http://gerrit.hyperledger.org/r/fabric source fabric/devenv/setupRHELonZ.sh ``` From this point, you can proceed as described above for the Vagrant development environment. diff --git a/sdk/node/bin/run-unit-tests.sh b/sdk/node/bin/run-unit-tests.sh index e74cb5f776c..cc0baaa02aa 100755 --- a/sdk/node/bin/run-unit-tests.sh +++ b/sdk/node/bin/run-unit-tests.sh @@ -133,7 +133,7 @@ prepareExampleForDeployInNetworkMode() { mkdir -p vendor/github.com/hyperledger cd vendor/github.com/hyperledger echo "cloning github.com/hyperledger/fabric; please wait ..." - git clone https://github.com/hyperledger/fabric > /dev/null + git clone http://gerrit.hyperledger.org/r/fabric > /dev/null cp -r fabric/vendor/github.com/op .. cd ../../.. go build