how to bring all the changes to fork from main repo code example

Example 1: Sync your Git Fork to the Original Repo

$ git remote add upstream https://github.com/[Original Owner Username]/[Original Repository].git
$ git fetch upstream
$ git checkout master
$ git merge upstream/master
$ git push

Example 2: github howto contribute fork 2 commits behind

# Clone your fork
git clone [email protected]:YOUR-USERNAME/YOUR-FORKED-REPO.git

# Add remote from original repository in your forked repository
cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream

# Update your frk from original repo to keep up with their changes
git pull upstream master