-1
Administrator@SANZVAIO /e/projects/pySan (master)
$ git remote add pySan git@github.com:sanfx/.git

Administrator@SANZVAIO /e/projects/pySan (master)
$ git push -u origin master
The authenticity of host 'github.com (207.97.227.239)' can't be established.
RSA key fingerprint is 16:27:ac:a5:76:28:2d:36:63:1b:56:4d:eb:df:a6:48.
Are you sure you want to continue connecting (yes/no)? yes
Warning: Permanently added 'github.com,207.97.227.239' (RSA) to the list of know
n hosts.
Permission denied (publickey).
fatal: The remote end hung up unexpectedly

github にプッシュする他の方法はありますか? Windows 7 で Git Bash を使用しています。

4

1 に答える 1

2
  1. リポジトリの URL が間違っています
  2. SSH に問題がある可能性もあります。

最初に、Web インターフェースまたはGitHub APIを使用して、GitHub に空のリポジトリを作成する必要があります。

を作成myrepoしたとします。使用する URL 構文は次のとおりです。

git remote add pySan git@github.com:sanfx/myrepo.git

それでも SSH エラーが発生する場合は、公開鍵と秘密鍵のペアを確認するか、https を使用して開始します。

git remote set-url pySan https://github.com/sanfx/myrepo.git
于 2013-03-09T07:56:47.153 に答える