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`