From 0988ce4929a115cfda4b44f16bdf880bd8acdafb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Wolfgang=20Hu=C3=9F?= Date: Thu, 31 Jan 2019 15:09:30 +0100 Subject: [PATCH] Add original repository as upstream Add the original Human Connection repository as upstream --- backend/installation/README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/backend/installation/README.md b/backend/installation/README.md index ff8d49d0e..8786ba7a9 100644 --- a/backend/installation/README.md +++ b/backend/installation/README.md @@ -28,11 +28,17 @@ For cloning your new repository to your local machine modify the following comma {% tab title="HTTPS" %} ```bash $ git clone https://github.com/YOUR-GITHUB-USERNAME/Nitro-Backend.git + +# Add the original Human Connection repository as upstream +git remote add upstream https://github.com/Human-Connection/Nitro-Backend.git ``` {% endtab %} {% tab title="SSH" %} ```bash $ git clone git@github.com:YOUR-GITHUB-USERNAME/Nitro-Backend.git + +# Add the original Human Connection repository as upstream +git remote add upstream git@github.com:Human-Connection/Nitro-Backend.git ``` {% endtab %} {% endtabs %}