forking outside of github instructions

This commit is contained in:
Rick van Lieshout 2022-07-19 11:17:38 +02:00
parent 2e49bd9f09
commit d41e9d3af4

View File

@ -17,6 +17,7 @@ Includes:
- [Getting started](#getting-started)
- [Project structure](#project-structure)
- ["Forking" outside of Github](#forking-outside-of-github)
<!-- tocstop -->
@ -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 <clone-url>`
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