Hello,
to avoid getting extra commit notification as "Merge branch 'master' of ...", do next command before pushing commits to remote repository:
git pull --ff --rebase origin master
The notification results when someone else committed in between the moment you pulled last time the repository and the push. A rebase will make all notification clean.
Cheers, Daniel