From ae53e5679948713db160f1529c8108a19c8daeda Mon Sep 17 00:00:00 2001 From: Arthur <74022263+arthursmacedo@users.noreply.github.com> Date: Mon, 18 Mar 2024 16:29:30 -0300 Subject: [PATCH] Replace https with ssh links in Contributing Guide (#47) The https links don't always work anymore for pushing to GitHub --- CONTRIBUTING.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 0f8dd67..93e9673 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -21,7 +21,7 @@ repository to grab a copy of the repository to your personal account. Then you can clone your fork of the site to your personal computer so you can edit the files. In a terminal, type: - git clone https://github.com/YOUR_USER_NAME/website.git + git clone git@github.com:YOUR_USER_NAME/website.git This will create a `website` folder in the current directory holding the website code. @@ -49,7 +49,7 @@ sync with the original repository at To update your local copy and fork, first you'll need to register the original repository. In your local copy, run: - git remote add upstream https://github.com/compgeolab/website.git + git remote add upstream git@github.com:compgeolab/website.git This will register the original repository as a source. Then run the following to pull in changes from the original: