0

良い人たち、助けてください。

コマンド「gitadd。」の後にファイルが追加されなかったのはなぜですか?

ファイルをプッシュできません。エラーが発生します。

       $ git push heroku master
         Warning: Permanently added the RSA host key for IP address '50.19.85.154' to the
        list of known hosts.
        Counting objects: 2, done.
        Writing objects: 100% (2/2), 200 bytes, done.
        Total 2 (delta 0), reused 0 (delta 0)
        -----> Heroku receiving push
        !     Heroku push rejected, no Cedar-supported app detected

        To git@heroku.com:simple-rain-7316.git
        ! [remote rejected] master -> master (pre-receive hook declined)
        error: failed to push some refs to 'git@heroku.com:simple-rain-7316.git'

または、RailsonWindows用の別のサーバーをお勧めします。

4

1 に答える 1

1

git リモートは ssh プロトコルを使用しています。

まず、ssh キー ペア (ssh-keygen) を作成してから heroku にログインし (heroku login)、公開鍵を heroku にアップロード (heroku keys:add) してから、もう一度プッシュしてみてください。

于 2012-06-28T07:39:37.363 に答える