Débutant dans la Heroku: Erreur lors de la pousser mon application sur Heroku

J'utilise Ubuntu 10.04. En suivant les tutoriel ici, j'ai créé le compte Heroku, installé GIT et Heroku avec succès. J'ai téléchargé la clé SSH et ajouter heroku de mon CHEMIN d'accès système.

Après, j'ai fait la chose suivante:

---------- PREMIÈRE (bonne)-------------

$ cd PATH/TO/MY_APP
$ git init
Initialized empty Git repository in .git/
$ touch HELLO
$ git add .
$ git commit -m "Add a HELLO file"

------------ENSUITE (réussie)----------

$ heroku create
Enter your Heroku credentials.
Email: [email protected]
Password: 
Uploading ssh public key /Users/joe/.ssh/id_rsa.pub
Created http://high-sunrise-58.heroku.com/| [email protected]:high-sunrise-58.git
Git remote heroku added

----------- DERNIÈRE (Qui a échoué!!!)----------

$ git push heroku master

Warning: Permanently added the RSA host key for IP address 'xx.xx.xx.xx' to the list of known hosts.
Counting objects: 3, done.
Writing objects: 100% (3/3), 226 bytes, done.
Total 3 (delta 0), reused 0 (delta 0)
f
-----> Heroku receiving push

 !     Heroku push rejected due to an unrecognized error.
 !     We've been notified, see http://support.heroku.com if the problem persists.


To [email protected]:high-sunrise-58.git
 ! [remote rejected] master -> master (pre-receive hook declined)
error: failed to push some refs to '[email protected]:high-sunrise-58.git'

Comme vous le voyez ci-dessus, ma DERNIÈRE étape a échoué.

Ce qui pourrait être la cause possible de l'erreur dans mon DERNIER(lors de la pousser mon application sur Heroku)?Pourquoi cela est-il un échec?

vous ne faites rien de mal - j'aimerais entrer en contact avec Heroku de soutien. Une chose cependant, c'est une application Rails, droit?
Oui, ça sera une application Rails. Mais actuellement, je viens de créer un fichier texte pour le pousser à heroku pour objectif de test.

OriginalL'auteur Mellon | 2011-11-17