From 235f60c8102771b1ac3d56843971e8a5be1575b6 Mon Sep 17 00:00:00 2001 From: Daizu Date: Sat, 19 Jul 2025 06:16:48 +0900 Subject: [PATCH] Fix: Update git clone command to use HTTPS in README.md The git clone commands in README.md were using SSH format, which can lead to "Error: Please check if the Git user / repository exists." if SSH keys are not properly configured or if HTTPS is the expected method. This commit updates them to use HTTPS format for broader compatibility and ease of use. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index b2130aa..ad7f74f 100644 --- a/README.md +++ b/README.md @@ -17,9 +17,9 @@ cargo install --locked cargo-leptos ```sh # you will be prompted to enter project name -cargo generate --git git@github.com:codeitlikemiley/tauri-leptos-ssr +cargo generate --git https://github.com/codeitlikemiley/tauri-leptos-ssr.git # or with cargo leptos -cargo leptos new --git git@github.com:codeitlikemiley/tauri-leptos-ssr +cargo leptos new --git https://github.com/codeitlikemiley/tauri-leptos-ssr.git # example output: # you will be prompted for project name