(calcite) branch main updated: [CALCITE-6075] Site: Cloning source code from GitHub using git protocol fails

2023-10-27 Thread zabetak
This is an automated email from the ASF dual-hosted git repository.

zabetak pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/calcite.git


The following commit(s) were added to refs/heads/main by this push:
 new ef82a6cc6b [CALCITE-6075] Site: Cloning source code from GitHub using 
git protocol fails
ef82a6cc6b is described below

commit ef82a6cc6bc565f6dc596c1d2aca7221fd6cdc49
Author: caicancai <77189278+caican...@users.noreply.github.com>
AuthorDate: Fri Oct 27 09:55:12 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#3488
---
 site/_docs/howto.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/site/_docs/howto.md b/site/_docs/howto.md
index e179f21c49..476ee2b779 100644
--- a/site/_docs/howto.md
+++ b/site/_docs/howto.md
@@ -58,7 +58,7 @@ Create a local copy of the GitHub repository,
 then build using the included Gradle wrapper:
 
 {% highlight bash %}
-$ git clone git://github.com/apache/calcite.git
+$ git clone https://github.com/apache/calcite.git
 $ cd calcite
 $ ./gradlew build
 {% endhighlight %}



[calcite] branch main updated: [CALCITE-6075] Site: Cloning source code from GitHub using git protocol fails

2023-10-26 Thread zabetak
This is an automated email from the ASF dual-hosted git repository.

zabetak pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/calcite.git


The following commit(s) were added to refs/heads/main by this push:
 new 8821eaf94b [CALCITE-6075] Site: Cloning source code from GitHub using 
git protocol fails
8821eaf94b is described below

commit 8821eaf94b08dd5c55074b900201da7c386c1635
Author: caicancai <77189278+caican...@users.noreply.github.com>
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 %}