added steps for upstream

This commit is contained in:
NAQVI 2021-08-19 13:08:12 +05:30
parent cbe966c294
commit 613fa583b3

View File

@ -16,6 +16,16 @@ OpenMetadata Github repository can be accessed here [https://github.com/open-met
![./images/fork-github.png](../../.gitbook/assets/fork-github.png)
Create a local clone of your fork
```bash
git clone https://github.com/<username>/OpenMetadata.git
```
Set a new remote repository that points to the OpenMetadata repository to pull changes from the open source OpenMetadata codebase into your clone
```bash
cd OpenMetadata/
git remote add upstream https://github.com/open-metadata/OpenMetadata.git
git remote -v
```
## Create a branch in your fork
```bash