$ git clone <url>
$ git remote -v
- upstream mean where you get the update from
$ git remote add upstream <upstream link>
$ git remote -v
- or pull down all the remote changes from upstream
- they are not merge with our local changes
$ git fetch upstream
$ git merge upstream/dev