update forj github code example

Example 1: update fork repository

## Add Original Repository
git remote add upstream https://github.com/OriginalOwner/OriginalProject.git

## Verify if Repository is added
git remote -v

## Fetch Updates from Original Repository
git fetch upstream

## Checkout to your master branch
git checkout master

## Get Updates from upstream repo
git merge upstream/master

## Push the commit over 
git push origin master

Example 2: update fork

git fetch upstream

git checkout master

git merge upstream/master

git push origin

Example 3: 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)

Example 4: steps to sync branch to fork master?

$ git fetch upstream
> remote: Enumerating objects: 82, done.
> remote: Counting objects: 100% (82/82), done.
> remote: Compressing objects: 100% (44/44), done.
> remote: Total 91 (delta 53), reused 30 (delta 30), pack-reused 9
> Unpacking objects: 100% (91/91), done.
> From https://github.com/ORIGINAL_OWNER/ORIGINAL_REPOSITORY
>  * [new branch]  	master -> upstream/master

Example 5: steps to sync branch to fork master?

$ git remote add upstream https://github.com/ORIGINAL_OWNER/ORIGINAL_REPOSITORY.git