This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a commit to branch site
in repository https://gitbox.apache.org/repos/asf/calcite.git
The following commit(s) were added to refs/heads/site by this push:
new 35104e0c1c [CALCITE-6075] Site: Cloning source code from GitHub using
git protocol fails
35104e0c1c is described below
commit 35104e0c1c4f8b10e22c92205f1b3f3e3cd8584e
Author: caicancai <[email protected]>
AuthorDate: Thu Oct 26 17:25:40 2023 +0800
[CALCITE-6075] Site: Cloning source code from GitHub using git protocol
fails
GitHub removed the unecrypted git protocoli a while ago:
https://github.blog/changelog/2022-03-15-removed-unencrypted-git-protocol-and-certain-ssh-keys/
Close apache/calcite#3485
---
site/develop/index.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/site/develop/index.md b/site/develop/index.md
index 4ed681157f..180048afa9 100644
--- a/site/develop/index.md
+++ b/site/develop/index.md
@@ -54,7 +54,7 @@ Create a local copy of the Git repository, `cd` to its root
directory,
then build using Gradle:
{% highlight bash %}
-$ git clone git://github.com/apache/calcite.git
+$ git clone https://github.com/apache/calcite.git
$ cd calcite
$ ./gradlew build
{% endhighlight %}