In Cloud 9’s terminal, cd into the sheql-start folder.
Type the following commands into terminal.
$ git remote add upstream https://github.com/Gmfholley/sheql-start.git
$ git fetch upstream
$ git merge upstream/master
This will:
- add a connection between your forked repo and the original repo
- fetch the original repo
- merge it with your repo
Cool, huh!