From 290282bf961490fee2930a143b966c20cf3fb436 Mon Sep 17 00:00:00 2001 From: Sameer Doshi Date: Tue, 19 Oct 2021 11:51:54 -0500 Subject: [PATCH] Adding instructions on how to pull from upstream --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/README.md b/README.md index e2fc319..e12554a 100644 --- a/README.md +++ b/README.md @@ -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?