From 5011315127baa15dcc3f44c8987c1923317a32c5 Mon Sep 17 00:00:00 2001 From: Jaewoo Kim Date: Fri, 6 Sep 2024 06:28:48 +0000 Subject: [PATCH] Modify readme to use https for upstream clone. --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index ba201de51..cf2f64a36 100644 --- a/README.md +++ b/README.md @@ -80,11 +80,11 @@ Ensure you are proficient with the following development tools: + Follow these steps to set up your repository: * Clone the upstream repository directly without forking it: ```bash - $ git clone --origin upstream git@github.com:kaist-cp/cs220.git + $ git clone --origin upstream https://github.com/kaist-cp/cs220.git $ cd cs220 $ git remote -v - upstream git@github.com:kaist-cp/cs220.git (fetch) - upstream git@github.com:kaist-cp/cs220.git (push) + upstream https://github.com/kaist-cp/cs220.git (fetch) + upstream https://github.com/kaist-cp/cs220.git (push) ``` * To receive updates from the upstream, fetch and merge `upstream/main`: ```bash