From 7eeffc233a677216d88c9bfab59e8877e8ea5188 Mon Sep 17 00:00:00 2001 From: Natasha Murashkina Date: Sun, 21 Nov 2021 16:07:38 +0300 Subject: [PATCH] Update developer-instruction.md Added the missing --recursive flag for cloning submodules. The text says "specify the `--recursive` flag as in the example above" but the flag wasn't there in the example --- docs/en/development/developer-instruction.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/en/development/developer-instruction.md b/docs/en/development/developer-instruction.md index e4b51242be8..52fa307333c 100644 --- a/docs/en/development/developer-instruction.md +++ b/docs/en/development/developer-instruction.md @@ -37,7 +37,7 @@ Next, you need to download the source files onto your working machine. This is c In the command line terminal run: - git clone git@github.com:your_github_username/ClickHouse.git + git clone --recursive git@github.com:your_github_username/ClickHouse.git cd ClickHouse Note: please, substitute *your_github_username* with what is appropriate! @@ -65,7 +65,7 @@ It generally means that the SSH keys for connecting to GitHub are missing. These You can also clone the repository via https protocol: - git clone https://github.com/ClickHouse/ClickHouse.git + git clone --recursive https://github.com/ClickHouse/ClickHouse.git This, however, will not let you send your changes to the server. You can still use it temporarily and add the SSH keys later replacing the remote address of the repository with `git remote` command.