Fixed documentation that often confuse new developers [#CLICKHOUSE-3]

This commit is contained in:
Alexey Milovidov 2018-08-05 08:52:46 +03:00
parent 2257d32b37
commit e6a5421091
2 changed files with 6 additions and 12 deletions

View File

@ -51,17 +51,14 @@ sudo apt-get install libicu-dev libreadline-dev libssl-dev
## Checkout ClickHouse sources ## Checkout ClickHouse sources
To get the latest stable version:
```bash ```bash
git clone -b stable --recursive git@github.com:yandex/ClickHouse.git git clone --recursive git@github.com:yandex/ClickHouse.git
# or: git clone -b stable --recursive https://github.com/yandex/ClickHouse.git # or: git clone --recursive https://github.com/yandex/ClickHouse.git
cd ClickHouse cd ClickHouse
``` ```
For development, switch to the `master` branch. For the latest stable version, switch to the `stable` branch.
For the latest release candidate, switch to the `testing` branch.
## Build ClickHouse ## Build ClickHouse

View File

@ -17,17 +17,14 @@ brew install cmake ninja gcc icu4c mariadb-connector-c openssl libtool gettext r
## Checkout ClickHouse sources ## Checkout ClickHouse sources
To get the latest stable version:
```bash ```bash
git clone -b stable --recursive --depth=10 git@github.com:yandex/ClickHouse.git git clone --recursive --depth=10 git@github.com:yandex/ClickHouse.git
# or: git clone -b stable --recursive --depth=10 https://github.com/yandex/ClickHouse.git # or: git clone --recursive --depth=10 https://github.com/yandex/ClickHouse.git
cd ClickHouse cd ClickHouse
``` ```
For development, switch to the `master` branch. For the latest stable version, switch to the `stable` branch.
For the latest release candidate, switch to the `testing` branch.
## Build ClickHouse ## Build ClickHouse