From 1edb2c3125a4febd5cc145f8294b39a2e377a913 Mon Sep 17 00:00:00 2001 From: Geert Stappers Date: Sat, 5 Aug 2023 11:03:41 +0200 Subject: [PATCH] git clone HTTPS URL Changed the _git clone URL_ into an URL that is available to all people that have Internet access. Signed-off-by: Geert Stappers --- Readme.md | 2 +- en/src/why-exercise.md | 2 +- zh-CN/src/why-exercise.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Readme.md b/Readme.md index a5a013858..b83c8faf0 100644 --- a/Readme.md +++ b/Readme.md @@ -69,7 +69,7 @@ We use [mdbook](https://rust-lang.github.io/mdBook/) building our exercises. You - Clone the repo ```shell -$ git clone git@github.com:sunface/rust-by-practice.git +$ git clone https://github.com/sunface/rust-by-practice ``` - Install mdbook using Cargo ```shell diff --git a/en/src/why-exercise.md b/en/src/why-exercise.md index aa981ee7a..9ad3e3e7e 100644 --- a/en/src/why-exercise.md +++ b/en/src/why-exercise.md @@ -23,7 +23,7 @@ This book was designed for easily diving into and get skilled with Rust, and it' We use [mdbook](https://rust-lang.github.io/mdBook/) building our exercises. You can run locally with below steps: ```shell -$ git clone git@github.com:sunface/rust-by-practice.git +$ git clone https://github.com/sunface/rust-by-practice $ cargo install mdbook $ cd rust-by-practice && mdbook serve en/ ``` diff --git a/zh-CN/src/why-exercise.md b/zh-CN/src/why-exercise.md index 844704d81..9f63a8bbf 100644 --- a/zh-CN/src/why-exercise.md +++ b/zh-CN/src/why-exercise.md @@ -23,7 +23,7 @@ 我们使用 [mdbook](https://rust-lang.github.io/mdBook/) 构建在线练习题,你也可以下载到本地运行: ```shell -$ git clone git@github.com:sunface/rust-by-practice.git +$ git clone https://github.com/sunface/rust-by-practice $ cargo install mdbook $ cd rust-by-practice && mdbook serve zh-CN/ ```