2017-02-12 20 views
1

私はgithubを使っていましたが、押すたびにgithubのユーザー名とパスワードを新しいプロンプトに入力する必要がありました。GitBashは私にGitHubのユーザー名とパスワードの入力を促し続けます

私は、SSHを使用してgithubの担当者のクローンを作成しようとしました://、httpsではなく://が、私はそのように入力すると:

gitのクローンのssh://github.com/user/repo.gitのI次を得る:

$ git clone ssh://github.com/user/repo.git 
Cloning into 'repo'... 
The authenticity of host 'github.com (192.30.253.112)' can't be established. 
RSA key fingerprint is SHA256:nThbg6kXUpJWGl7E1IGOCspRomTxdCARLviKw6E5SY8. 
Are you sure you want to continue connecting (yes/no)? yes 
Warning: Permanently added 'github.com,192.30.253.112' (RSA) to the list of  known hosts. 
Permission denied (publickey). 
fatal: Could not read from remote repository. 

あなたは正しいアクセス権 を持っているし、リポジトリが存在することを確認してください。

答えて

1

sshの代わりにHTTPSを使用してクローンを作成しようとしています。

SSHリンクこの

[email protected]のようなものでしょう:あなたはオプションを見つけるあなたはクローンまたはそこダウンロード]タブをクリックしてssh接続を探すことができ、ドメイン/ repositoryName.git

をsshを使用する。

+0

ありがとうございました。私はgithubに自分のsshキーを追加しなければならなかった。それは今働きます! – mishke

関連する問題