Skip to content

Latest commit

 

History

History
16 lines (12 loc) · 374 Bytes

fetch_remote.md

File metadata and controls

16 lines (12 loc) · 374 Bytes

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:

  1. add a connection between your forked repo and the original repo
  2. fetch the original repo
  3. merge it with your repo

Cool, huh!