Pourquoi “git push” est rejetée? (“git pull” n'aide pas)

Ma branche courante est my_branch. En essayant de repousser les modifications apportées à la distance repo-je obtenir:

$ git push
Counting objects: 544, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (465/465), done.
Writing objects: 100% (533/533), 2.04 MiB | 1.16 MiB/s, done.
Total 533 (delta 407), reused 0 (delta 0)
To [email protected]
   4ed90a6..52673f3  my_branch -> my_branch
 ! [rejected]        master -> master (non-fast-forward)
error: failed to push some refs to '[email protected]'
To prevent you from losing history, non-fast-forward updates were rejected
Merge the remote changes (e.g. 'git pull') before pushing again.  See the
'Note about fast-forwards' section of 'git push --help' for details.

Essayer de git pull résultats dans:

$ git pull
Already up-to-date.

Pourquoi j'ai cette erreur?
Comment pourrais-je résoudre ce problème et d'effectuer git push avec succès?

OriginalL'auteur Misha Moroshko | 2012-01-17