[
https://issues.apache.org/jira/browse/IMPALA-12047?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Anshula Jain closed IMPALA-12047.
---------------------------------
As per [http://gerrit.cloudera.org:8080/19634] the reported URL error is fixed
> docs README.md
> --------------
>
> Key: IMPALA-12047
> URL: https://issues.apache.org/jira/browse/IMPALA-12047
> Project: IMPALA
> Issue Type: Improvement
> Components: Docs
> Reporter: Angelo
> Assignee: Anshula Jain
> Priority: Major
>
> There's a URL mistake when using "git clone" in docs/README.md.
> {code:java}
> git clone https://gitbox.apache.org/repos/asf/impala.git/docs {code}
> Actually, this doesn't work and it will prompt "repository not found".
> Remark:
> On the one hand, if the doc means to clone the whole repository, the command
> should be
> {code:java}
> git clone https://gitbox.apache.org/repos/asf/impala.git {code}
> On the other hand, if the doc means to clone only 'docs' directory of the
> whole repository, "sparse-checkout" could be used and some preceding context
> may be needed. This is a possible way:
> {code:java}
> git init impala_docs
> cd impala_docs
> git remote add origin https://gitbox.apache.org/repos/asf/impala.git
> git sparse-checkout set docs/
> git pull origin master{code}
> You'll see only the 'docs/' sub-directory is downloaded.
>
>
>
--
This message was sent by Atlassian Jira
(v8.20.10#820010)