From e42c56084e0f20bacb84483b483254cc1fab8133 Mon Sep 17 00:00:00 2001 From: Frank Zappulla Date: Fri, 18 Sep 2020 23:51:56 -0400 Subject: [PATCH] added useful directly to readme --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index 6bab86f..5acf2bc 100644 --- a/README.md +++ b/README.md @@ -3,3 +3,11 @@ #### How to set upstream to allow pull from original repo [link to stack overflow](https://stackoverflow.com/questions/3903817/pull-new-updates-from-original-github-repository-into-forked-github-repository) + +- `git remote add upstream https://github.uconn.edu/omk12001/cse4302.git` +- `git fetch upstream` +- `git merge upstream/master master` + +Alternatively you can rebase + +- `git rebase upstream/master`