how to sync a branch with master github code example
Example 1: git sync branch with master
git checkout master
git pull
git checkout mybranch
git merge master
git checkout master
git merge mybranch
git push origin master
Example 2: git sync branch from master
git checkout test-branch //Checkout the branch you want to update
git merge master //Merge all code from master to test-branch
// When your are done with test-branch you can merge all code into master branch
git checkout master // Make sure you are on master branch
git merge test-branch