UPDATE: This is updated thanks to an updated question...
So, when you do a pull, git will try to merge the existing changes and notify you of any conflicts. It looks like you are committing changes on a branch, we'll call it newBranch. You then checkout the local master branch and perform a pull. If you do a straight pull, git will combine the fetch and merge commands and only let you intervene if there are conflicts.
git push origin master
pushes your master branch to the origin remote. Similarly,
git pull origin master
Which would pull from the remote branch into your current branch.
I assume in step (4), you forgot to mention which branch you are checking out, but let's assume its that newBranch. You are trying to merge master INTO newBranch in step 5, which is also the opposite of what you usually want to do. Generally, you merge branches into the master branch after you test that a feature or change you made works. After you resolve any conflicts from the merge, it is committed as part of the merge. You can then push the merged master branch from origin to master.