On Wednesday 09 January 2013, Daniel-Constantin Mierla wrote:
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
Or just configure the master branch to automatically rebase instead of merge (overridable if necessary):
$ git config branch.master.rebase true