pull from upstream master code example
Example 1: steps to sync branch to fork master?
$ git merge upstream/master
> Updating a422352..5fdff0f
Example 2: steps to sync branch to fork master?
$ git remote -v
> origin https://github.com/YOUR_USERNAME/YOUR_FORK.git (fetch)
> origin https://github.com/YOUR_USERNAME/YOUR_FORK.git (push)
> upstream https://github.com/ORIGINAL_OWNER/ORIGINAL_REPOSITORY.git (fetch)
> upstream https://github.com/ORIGINAL_OWNER/ORIGINAL_REPOSITORY.git (push)