2

プロジェクト (Calico) を GitHub にプッシュしようとしていますが、エラーが発生しています。ssh 接続を介して正常にログインし、通常の応答を受け取りました。

Ryan@RYANLAPTOP-PC /C/inetpub/wwwroot/Calico (master)
$ ssh git@github.com
Enter passphrase for key '/c/Users/Ryan/.ssh/id_rsa':
Hi rossryan! You've successfully authenticated, but GitHub does not provide shel
l access.
Connection to github.com closed.

ただし、コードをプッシュしようとすると、まだエラーが発生します。

Ryan@RYANLAPTOP-PC /C/inetpub/wwwroot/Calico (master)
$ git push -u github master
The server's host key is not cached in the registry. You
have no guarantee that the server is the computer you
think it is.
The server's rsa2 key fingerprint is:
ssh-rsa 2048 16:27:ac:a5:76:28:2d:36:63:1b:56:4d:eb:df:a6:48
Connection abandoned.
fatal: The remote end hung up unexpectedly

ウェブサイトの指示にかなり忠実に従い、正しい領域の「オリジン」を「GitHub」に置き換えたと思います (オリジンは既に定義されているようで、別の名前を使用しました)。この問題について GitHub にメールを送信しましたが、応答がありません。

他のアイデアはありますか?

編集:

git remote -v からの出力:

Ryan@RYANLAPTOP-PC /C/inetpub/wwwroot/Calico (master)
$ git remote -v
github  git@github.com:rossryan/Calico.git (fetch)
github  git@github.com:rossryan/Calico.git (push)
origin  C:/inetpub/wwwroot/Calico/ (fetch)
origin  C:/inetpub/wwwroot/Calico/ (push)
4

1 に答える 1

1

git push origin masterが失敗するのは、(msysgitに含まれているパッケージ化されたopensshの代わりに)puttyを使用した場合のエラーに関するものでした。私はそれがあなたの場合ではないと思います。

git-キャッシュされていないサーバーホストキーはほぼ同じエラーであり、ssh接続を確立することを提案しgithubます($HOME/ssh/known_hostsファイルに追加することを提案しなかったため、これも問題ではありません)。

チェックする必要があるのは次のとおりです。

  • なぜgithubデフォルト名の代わりにプッシュするのですか' origin'('github'という名前のリモート(アップストリーム)リポジトリを実際に追加しましたか?)
  • リモート名「github」の背後にある正確なアドレス。プッシュするための正しいアドレスは次のようになります(リモートのGitHubのマニュアルページから):
    • sshのURLgit@github.com:user/repo.git
    • または次のようなhttpsURLhttps://user@github.com/user/repo.git
于 2012-04-14T19:42:00.650 に答える