Skip to content

Commit

Permalink
Updated git clone URL
Browse files Browse the repository at this point in the history
  • Loading branch information
dgquintas committed Jun 30, 2016
1 parent 3db76b9 commit 4281272
Show file tree
Hide file tree
Showing 11 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ For developers who are interested to contribute, here is how to compile the
gRPC C Core library.

```sh
$ git clone https://github.com/grpc/grpc.git
$ git clone -b $(curl -L http://grpc.io/release) https://github.com/grpc/grpc
$ cd grpc
$ git submodule update --init
$ make
Expand Down
2 changes: 1 addition & 1 deletion examples/cpp/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ following command:


```sh
$ git clone https://github.com/grpc/grpc.git
$ git clone -b $(curl -L http://grpc.io/release) https://github.com/grpc/grpc
```

Change your current directory to examples/cpp/helloworld
Expand Down
2 changes: 1 addition & 1 deletion examples/cpp/cpptutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ With gRPC we can define our service once in a .proto file and implement clients

The example code for our tutorial is in [examples/cpp/route_guide](route_guide). To download the example, clone this repository by running the following command:
```shell
$ git clone https://github.com/grpc/grpc.git
$ git clone -b $(curl -L http://grpc.io/release) https://github.com/grpc/grpc
```

Then change your current directory to `examples/cpp/route_guide`:
Expand Down
2 changes: 1 addition & 1 deletion examples/cpp/helloworld/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ following command:


```sh
$ git clone https://github.com/grpc/grpc.git
$ git clone -b $(curl -L http://grpc.io/release) https://github.com/grpc/grpc
```

Change your current directory to examples/cpp/helloworld
Expand Down
2 changes: 1 addition & 1 deletion examples/node/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ INSTALL
```sh
$ # Get the gRPC repository
$ export REPO_ROOT=grpc # REPO root can be any directory of your choice
$ git clone https://github.com/grpc/grpc.git $REPO_ROOT
$ git clone -b $(curl -L http://grpc.io/release) https://github.com/grpc/grpc $REPO_ROOT
$ cd $REPO_ROOT

$ cd examples/node
Expand Down
2 changes: 1 addition & 1 deletion examples/objective-c/helloworld/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ this repository to your local machine by running the following commands:


```sh
$ git clone https://github.com/grpc/grpc.git
$ git clone -b $(curl -L http://grpc.io/release) https://github.com/grpc/grpc
$ cd grpc
$ git submodule update --init
```
Expand Down
2 changes: 1 addition & 1 deletion examples/php/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ INSTALL
- Clone this repository

```sh
$ git clone https://github.com/grpc/grpc.git
$ git clone -b $(curl -L http://grpc.io/release) https://github.com/grpc/grpc
```

- Install composer
Expand Down
2 changes: 1 addition & 1 deletion src/cpp/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ below.
#Build from Source

```sh
$ git clone https://github.com/grpc/grpc.git
$ git clone -b $(curl -L http://grpc.io/release) https://github.com/grpc/grpc
$ cd grpc
$ git submodule update --init
$ make
Expand Down
4 changes: 2 additions & 2 deletions src/php/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ To run tests with generated stub code from `.proto` files, you will also need th
Clone this repository

```sh
$ git clone https://github.com/grpc/grpc.git
$ git clone -b $(curl -L http://grpc.io/release) https://github.com/grpc/grpc
```

Build and install the gRPC C core library
Expand Down Expand Up @@ -101,7 +101,7 @@ extension=grpc.so
You will need the source code to run tests

```sh
$ git clone https://github.com/grpc/grpc.git
$ git clone -b $(curl -L http://grpc.io/release) https://github.com/grpc/grpc
$ cd grpc
$ git pull --recurse-submodules && git submodule update --init --recursive
```
Expand Down
2 changes: 1 addition & 1 deletion src/python/grpcio/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ package named :code:`python-dev`).
::

$ export REPO_ROOT=grpc # REPO_ROOT can be any directory of your choice
$ git clone https://github.com/grpc/grpc.git $REPO_ROOT
$ git clone -b $(curl -L http://grpc.io/release) https://github.com/grpc/grpc $REPO_ROOT
$ cd $REPO_ROOT
$ git submodule update --init

Expand Down
2 changes: 1 addition & 1 deletion tools/distrib/python/grpcio_tools/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ GCC-like stuff, but you may end up having a bad time.
::

$ export REPO_ROOT=grpc # REPO_ROOT can be any directory of your choice
$ git clone https://github.com/grpc/grpc.git $REPO_ROOT
$ git clone -b $(curl -L http://grpc.io/release) https://github.com/grpc/grpc $REPO_ROOT
$ cd $REPO_ROOT
$ git submodule update --init

Expand Down

0 comments on commit 4281272

Please sign in to comment.