From d41e9d3af4b7f3d2da72dad0ebbe70c147f55bb2 Mon Sep 17 00:00:00 2001 From: Mastermindzh Date: Tue, 19 Jul 2022 11:17:38 +0200 Subject: [PATCH] forking outside of github instructions --- README.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/README.md b/README.md index 004059a..e4a129b 100644 --- a/README.md +++ b/README.md @@ -17,6 +17,7 @@ Includes: - [Getting started](#getting-started) - [Project structure](#project-structure) +- ["Forking" outside of Github](#forking-outside-of-github) @@ -48,3 +49,14 @@ Only the important files are shown ├── README.md # keep this up to date └── tsconfig.json ``` + +## "Forking" outside of Github + +To use this base in other git software (not Github) you will have to manually manage the upstream. +Go into your existing repo and execute the following commands: + +1. `git remote add upstream ` +2. `git pull upstream master` # or other branchname +3. `git push` + +Then, when you need to sync again you can repeat step 2 and 3