GIT - pousser à (GitHub) maître d'origine ne fait rien

J'ai fourche quelqu'un dépôt GIT:

https://github.com/nippysaurus/toodledo-objc

Cloné à mon local de la machine, indiquant l'origine, avec les informations suivantes:

* remote origin
  Fetch URL: https://[email protected]/nippysaurus/toodledo-objc.git
  Push  URL: https://[email protected]/nippysaurus/toodledo-objc.git
  HEAD branch: master
  Remote branch:
    master tracked
  Local branch configured for 'git pull':
    master merges with remote master
  Local ref configured for 'git push':
    master pushes to master (up to date)

Quand je pousse mes changements "d'origine" master git imprime "tout à jour", mais rien, il à jour dans mon dépôt GitHub.

Ce qui se passe ici?

EDIT:

Quelqu'un est de suggérer que j'ai vérifier thay, les fichiers ont été effectivement commis... les fichiers ont été commis, je vous assure.

commit 0d3a21616d82c8e5a89baaf85d745fc2cfdf614f
Author: nippysaurus <[email protected]>
Date:   Wed Jun 1 13:19:14 2011 +1000

    updated readme

C'est le fichier qui a été mis à jour à:

commit 0d3a21616d82c8e5a89baaf85d745fc2cfdf614f
Author: nippysaurus <[email protected]>
Date:   Wed Jun 1 13:19:14 2011 +1000

    updated readme

diff --git a/README.mdown b/README.mdown
index fb8ee14..a71aa57 100644
--- a/README.mdown
+++ b/README.mdown
@@ -3,7 +3,7 @@ toodledo-objc

 An _unofficial_ toodledo-API implementation in ObjectiveC.

-This library currently uses [version 1.0 of the API](http://www.toodledo.com/info/api_doc.php "Toodledo API 1.0 spec") which has been offic
+This library currently uses [version 1.0 of the API](http://www.toodledo.com/info/api_doc.php "Toodledo API 1.0 spec") which has been offic

 Supported:

Aussi, je peux voir que la version locale du fichier est très différente de la version sur GitHub, les changements sont certainement ajouté à mon local repo, mais ne sont pas poussés à la distance repo.

source d'informationauteur Nippysaurus