0

サーバーでこれを「試しています」:

# ~/.ssh/config
Host github.com
  IdentityFile xxxx

xxxxサーバーで行うとき、何を入れるべきですか:

git clone git@github.com:myuser/myrepo.git

Git は、サーバーでは~/.ssh/my_another_private_key_fileなく、ローカルで ID を使用します~/.ssh/id_rsa

4

1 に答える 1

3

これは、git clone を実行しているマシンの ~/.ssh/config ファイルに入れる必要があります。

Host github.com
  IdentityFile ~/.ssh/my_another_private_key_file

サーバーでクローンを作成していて、my_another_private_key_file がローカルにある場合は、サーバーの ~/.ssh/identity に追加することをお勧めします。そのため、そこに ssh-add すると、ssh-agent に追加されます。処理する。

于 2013-10-11T23:23:11.187 に答える