Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
サーバーでこれを「試しています」:
# ~/.ssh/config Host github.com IdentityFile xxxx
xxxxサーバーで行うとき、何を入れるべきですか:
xxxx
git clone git@github.com:myuser/myrepo.git
Git は、サーバーでは~/.ssh/my_another_private_key_fileなく、ローカルで ID を使用します~/.ssh/id_rsa。
~/.ssh/my_another_private_key_file
~/.ssh/id_rsa
これは、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 に追加されます。処理する。