Adding instructions on how to pull from upstream

This commit is contained in:
Sameer Doshi 2021-10-19 11:51:54 -05:00
Родитель 6b3b6bde54
Коммит 290282bf96
1 изменённых файлов: 7 добавлений и 0 удалений

Просмотреть файл

@ -147,6 +147,13 @@ At the top of the file is the const that defines the data.
### Notes
1. You'll need to index the 'posted' field in order to use the ORDER DESC
2. How do I pull changes from the original repo into my repo?
```
git remote add upstream https://github.com/microsoft/react-graphql-nosql-starter-kit
git fetch upstream
git merge upstream/main main
git push
```
# What do I do now?